|
|
@@ -43,7 +43,7 @@
|
|
43
|
43
|
</template>
|
|
44
|
44
|
|
|
45
|
45
|
<script>
|
|
46
|
|
-
|
|
|
46
|
+import { mapGetters } from 'vuex'
|
|
47
|
47
|
import { getOrderLists, deleteOrder,deletesMember } from '@/api/memberManagement/memberList'
|
|
48
|
48
|
import searchFilter from './components/searchFilter'
|
|
49
|
49
|
import addOrEdit from './components/addOrEdit'
|
|
|
@@ -94,6 +94,11 @@ export default {
|
|
94
|
94
|
}
|
|
95
|
95
|
}
|
|
96
|
96
|
},
|
|
|
97
|
+ computed: {
|
|
|
98
|
+ ...mapGetters([
|
|
|
99
|
+ 'token'
|
|
|
100
|
+ ])
|
|
|
101
|
+ },
|
|
97
|
102
|
methods: {
|
|
98
|
103
|
getList() {
|
|
99
|
104
|
this.loading = true
|
|
|
@@ -129,6 +134,7 @@ export default {
|
|
129
|
134
|
this.getList()
|
|
130
|
135
|
},
|
|
131
|
136
|
btn_export() {
|
|
|
137
|
+ // alert(this.token)
|
|
132
|
138
|
window.location.href = this.$store.getters.serverConfig.BASE_API + 'api/vipinfo/exportexcel?name=' + this.searchDatas.customerName +
|
|
133
|
139
|
'&phone=' + this.searchDatas.phoneNumber + //手机号码
|
|
134
|
140
|
// '&stime=' + this.searchDatas.searchDate && this.searchDatas.searchDate[0] +
|
|
|
@@ -140,7 +146,8 @@ export default {
|
|
140
|
146
|
'&recommender=' + this.searchDatas.referrer + //推荐人
|
|
141
|
147
|
'&saleperson=' + this.searchDatas.saleperson + //销售负责人
|
|
142
|
148
|
'&contact=' + this.searchDatas.contactFrequency + //联系频次
|
|
143
|
|
- '&deptid=' + this.searchDatas.sc_deptid
|
|
|
149
|
+ // '&token=' + this.token + //联系频次
|
|
|
150
|
+ '&birthday=' + this.searchDatas.birthday
|
|
144
|
151
|
},
|
|
145
|
152
|
btn_detail(editId) {
|
|
146
|
153
|
this.$layer.iframe({
|