|
|
@@ -199,12 +199,15 @@ |
|
|
|
<view class="hsnrtest" v-if="subitem.show">话术内容</view> |
|
|
|
<view class="Level3che" @tap="clickaudeopal(che)" v-if="subitem.show" |
|
|
|
v-for="(che,inc) in subitem.children" :key='inc'> |
|
|
|
<view class="title1">{{inc+1}}.{{che.name}}</view> |
|
|
|
<!-- che.selected==0 为本次接待-蓝色 ,viewFlag==1 为2次接待-黄色 未执行-灰色--> |
|
|
|
<!-- <view class="title1" v-if="che.viewFlag==1" :style="che.viewFlag==1?'color:#FF8C13':che.selected!=0?'color: #666':''">{{inc+1}}.{{che.name}}</view> --> |
|
|
|
<view class="title1" :style="che.viewFlag==1?'color:#FF8C13':che.selected!=0?'color: #666':''">{{inc+1}}.{{che.name}}</view> |
|
|
|
<view class="jiantobox"> |
|
|
|
<image v-if="che.selected==0" class="arrow" src="/static/images/rate-checked.png" |
|
|
|
<image v-if="che.selected==0&&che.viewFlag != 1" class="arrow" src="/static/images/rate-checked.png" |
|
|
|
mode="" /> |
|
|
|
<image v-if="che.selected==1" class="arrow" src="/static/images/rate-nocheck.png" |
|
|
|
<image v-else-if="che.selected==0&&che.viewFlag == 1" class="arrow" src="/static/images/checked-yellow.png" |
|
|
|
mode="" /> |
|
|
|
<image v-else class="arrow" src="/static/images/rate-nocheck.png" mode="" /> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view v-if="subitem.show" style="width: 100%;height: 30rpx;"></view> |
|
|
@@ -250,9 +253,12 @@ |
|
|
|
<view class="hsnrtest">话术内容</view> |
|
|
|
<view class="Level3che" |
|
|
|
v-for="(che,inc) in item.questionList" :key='inc'> |
|
|
|
<view class="title1">{{inc+1}}.{{che.question}}</view> |
|
|
|
<view class="title1" :style="che.selected==2?'color:#FF8C13':che.selected==1?'color: #666':''">{{inc+1}}.{{che.question}}</view> |
|
|
|
<view class="jiantobox"> |
|
|
|
<!-- 0本次选中 1未选中 2上次选中 --> |
|
|
|
<image v-if="che.selected==0" class="arrow" src="/static/images/rate-checked.png" |
|
|
|
mode="" /> |
|
|
|
<image v-else-if="che.selected==2" class="arrow" src="/static/images/checked-yellow.png" |
|
|
|
mode="" /> |
|
|
|
<image v-else class="arrow" src="/static/images/rate-nocheck.png" |
|
|
|
mode="" /> |
|
|
@@ -279,10 +285,12 @@ |
|
|
|
<view class="hsnrtest">话术内容</view> |
|
|
|
<view class="Level3che" |
|
|
|
v-for="(che,inc) in subitem.questionList" :key='inc'> |
|
|
|
<view class="title1">{{inc+1}}.{{che.question}}</view> |
|
|
|
<view class="title1" :style="che.selected==2?'color:#FF8C13':che.selected==1?'color: #666':''">{{inc+1}}.{{che.question}}</view> |
|
|
|
<view class="jiantobox"> |
|
|
|
<image v-if="che.selected==0" class="arrow" src="/static/images/rate-checked.png" |
|
|
|
mode="" /> |
|
|
|
<image v-if="che.selected==0" class="arrow" src="/static/images/rate-checked.png" |
|
|
|
mode="" /> |
|
|
|
<image v-else-if="che.selected==2" class="arrow" src="/static/images/checked-yellow.png" |
|
|
|
mode="" /> |
|
|
|
<image v-else class="arrow" src="/static/images/rate-nocheck.png" |
|
|
|
mode="" /> |
|
|
|
</view> |
|
|
@@ -371,7 +379,7 @@ |
|
|
|
// 客户详情需求挖掘话术 |
|
|
|
getfindKeyWordsBycusId() { |
|
|
|
this.$u.get("/cusLvStatistics/findKeyWordsBycusId?cusId=" + this.customerId).then(res => { |
|
|
|
console.log(res) |
|
|
|
// console.log(res) |
|
|
|
if(res.length){ |
|
|
|
res.forEach(item=>{ |
|
|
|
item.show = false |
|
|
@@ -560,6 +568,7 @@ |
|
|
|
rate: item.fraction, |
|
|
|
name: item.name, |
|
|
|
sort: item.sort, |
|
|
|
viewFlag: item.viewFlag, |
|
|
|
show: false, |
|
|
|
ratepercent: 0, |
|
|
|
children: [] |
|
|
@@ -579,6 +588,7 @@ |
|
|
|
rate: subitem.fraction, |
|
|
|
selected: subitem.selected, |
|
|
|
name: subitem.name, |
|
|
|
viewFlag: subitem.viewFlag, |
|
|
|
show: false, |
|
|
|
marketingId: subitem.marketingId, |
|
|
|
children: [] |
|
|
@@ -595,6 +605,7 @@ |
|
|
|
id: subitem.id, |
|
|
|
rate: subitem.fraction, |
|
|
|
selected: subitem.selected, |
|
|
|
viewFlag: subitem.viewFlag, |
|
|
|
name: subitem.name, |
|
|
|
marketingId: subitem.marketingId, |
|
|
|
}) |
|
|
|