|
|
@@ -22,7 +22,7 @@ |
|
|
|
</view> |
|
|
|
<!-- 选择器 --> |
|
|
|
<view class="boxtittab" style="border: none"> |
|
|
|
<view class="tabbox" @click="soltishow = true"> |
|
|
|
<view class="tabbox" @click="soltishow = true" :style="sortFilter=='排序'?'color:#666':'color:#409eff'"> |
|
|
|
{{ sortFilter }} |
|
|
|
<u-icon |
|
|
|
name="arrow-down" |
|
|
@@ -30,7 +30,7 @@ |
|
|
|
style="padding-left: 12rpx" |
|
|
|
></u-icon> |
|
|
|
</view> |
|
|
|
<view class="tabbox" @click="timeshow = true"> |
|
|
|
<view class="tabbox" @click="timeshow = true" :style="arriveFilter=='到访时间'?'color:#666':'color:#409eff'"> |
|
|
|
{{ arriveFilter }} |
|
|
|
<u-icon |
|
|
|
name="arrow-down" |
|
|
@@ -38,7 +38,7 @@ |
|
|
|
style="padding-left: 12rpx" |
|
|
|
></u-icon> |
|
|
|
</view> |
|
|
|
<view class="tabbox" @click="selectshow = true"> |
|
|
|
<view class="tabbox" @click="selectshow = true" :style="receptionDuration=='所属顾问'?'color:#666':'color:#409eff'"> |
|
|
|
{{ receptionDuration }} |
|
|
|
<u-icon |
|
|
|
name="arrow-down" |
|
|
@@ -47,7 +47,8 @@ |
|
|
|
></u-icon> |
|
|
|
</view> |
|
|
|
<view class="tabbox" @click="huaxiangShow = true"> |
|
|
|
画像标签<u-icon |
|
|
|
画像标签 |
|
|
|
<u-icon |
|
|
|
name="arrow-down" |
|
|
|
size="24" |
|
|
|
style="padding-left: 12rpx" |
|
|
@@ -161,9 +162,9 @@ |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<!-- 更多筛选 --> |
|
|
|
<u-popup v-model="screenShow" mode="top" height="850"> |
|
|
|
<u-popup v-model="screenShow" mode="top" height="900"> |
|
|
|
<view class="screen"> |
|
|
|
<scroll-view scroll-y="true" style="height: 700rpx;"> |
|
|
|
<scroll-view scroll-y="true" style="height: 750rpx;"> |
|
|
|
<!-- 咨询业务 --> |
|
|
|
<!-- <view class="screen-record"> |
|
|
|
<view class="screen-record-text" @click="zixunArrow = !zixunArrow"> |
|
|
@@ -764,6 +765,7 @@ export default { |
|
|
|
}, |
|
|
|
], |
|
|
|
sourceList: [],//客户来源 |
|
|
|
keywordsIds: [],// 画像标签 |
|
|
|
isRefresh: false, |
|
|
|
// 筛选文字展示 |
|
|
|
sortFilter: "排序", |
|
|
@@ -931,7 +933,6 @@ export default { |
|
|
|
this.screen.level = [] |
|
|
|
this.screen.clientStage = [] |
|
|
|
this.screen.sourceIds = [] |
|
|
|
let keywordsIds = [] |
|
|
|
let dateType = 0; |
|
|
|
if (this.activeTotal == 5||this.activeTotal == 4) { |
|
|
|
dateType = null; |
|
|
@@ -966,14 +967,6 @@ export default { |
|
|
|
this.sourceList.forEach(i => { |
|
|
|
if(i.isShow) this.screen.sourceIds.push(i.value) |
|
|
|
}) |
|
|
|
|
|
|
|
this.huaxiangList.forEach(item => { |
|
|
|
if(item.children.length){ |
|
|
|
item.children.forEach(im=>{ |
|
|
|
if(im.isShow) keywordsIds.push(im.id) |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
var parames = { |
|
|
|
pageNum: this.nextPage, |
|
|
|
pageSize: 10, |
|
|
@@ -986,7 +979,7 @@ export default { |
|
|
|
sourceIds: this.screen.sourceIds.length?this.screen.sourceIds.join(','):'',// 客户来源 |
|
|
|
level: this.screen.level.length?this.screen.level.join(','):'',// 客户等级 |
|
|
|
duractionNums: this.screen.jiedaiVal.length?this.screen.jiedaiVal.join(','):'',// 接待时长 |
|
|
|
keywordsIds: keywordsIds.length?keywordsIds.join(','):'',// 画像标签 |
|
|
|
keywordsIds: this.keywordsIds.length?this.keywordsIds.join(','):'',// 画像标签 |
|
|
|
dateType: dateType, // 接待时间 |
|
|
|
staTime: this.screen.staTime, |
|
|
|
endTime: this.screen.endTime, |
|
|
@@ -1168,9 +1161,19 @@ export default { |
|
|
|
screensure() { |
|
|
|
this.nextPage = 1; |
|
|
|
this.recordList = []; |
|
|
|
this.keywordsIds = [] |
|
|
|
this.screenShow = false; |
|
|
|
this.huaxiangShow = false; |
|
|
|
this.isRefresh = false; |
|
|
|
// 画像标签 |
|
|
|
this.huaxiangList.forEach(item => { |
|
|
|
if(item.children.length){ |
|
|
|
item.children.forEach(im=>{ |
|
|
|
if(im.isShow) this.keywordsIds.push(im.id) |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
console.log(this.keywordsIds); |
|
|
|
this.getMyCustom(); |
|
|
|
}, |
|
|
|
goSearch() { |
|
|
|