瀏覽代碼

修改文字

yun
corala 1 年之前
父節點
當前提交
217743ee07
共有 2 個文件被更改,包括 20 次插入17 次删除
  1. +19
    -16
      pages/center/consumer/index.vue
  2. +1
    -1
      pages/center/records/index.vue

+ 19
- 16
pages/center/consumer/index.vue 查看文件

@@ -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() {


+ 1
- 1
pages/center/records/index.vue 查看文件

@@ -1061,7 +1061,7 @@
.screen-record-text {
padding: 30rpx 0;
font-size: 30rpx;
font-weight: 400;
font-weight: 600;
color: #333333;
line-height: 30rpx;
display: flex;


Loading…
取消
儲存