|
|
@@ -281,9 +281,9 @@ |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="hsnrtest" v-if="subitem.show">话术内容</view> |
|
|
|
<view class="Level3che" @tap="clickaudeopal(che)" v-if="subitem.show" |
|
|
|
<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> |
|
|
|
<view class="title1" :class="{gray: che.viewFlag == 1}">{{inc+1}}.{{che.name}}</view> |
|
|
|
<view class="jiantobox"> |
|
|
|
<image v-if="che.selected==0" class="arrow" src="/static/images/rate-checked.png" |
|
|
|
mode="" /> |
|
|
@@ -705,7 +705,7 @@ |
|
|
|
}, |
|
|
|
//评分点击 |
|
|
|
clickaudeopal(item) { |
|
|
|
if (item.selected == 0) { |
|
|
|
if (item.selected == 0 && item.viewFlag != 1) { |
|
|
|
console.log(item) |
|
|
|
this.Pinspeak = false |
|
|
|
uni.navigateTo({ |
|
|
@@ -1528,7 +1528,8 @@ |
|
|
|
sort: item.sort, |
|
|
|
show: false, |
|
|
|
ratepercent: 0, |
|
|
|
children: [] |
|
|
|
children: [], |
|
|
|
viewFlag: item.viewFlag, |
|
|
|
}) |
|
|
|
} else { |
|
|
|
if (item.selected == 0) { |
|
|
@@ -1551,7 +1552,8 @@ |
|
|
|
name: subitem.name, |
|
|
|
show: false, |
|
|
|
marketingId: subitem.marketingId, |
|
|
|
children: [] |
|
|
|
children: [], |
|
|
|
viewFlag: subitem.viewFlag, |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
@@ -1567,6 +1569,7 @@ |
|
|
|
selected: subitem.selected, |
|
|
|
name: subitem.name, |
|
|
|
marketingId: subitem.marketingId, |
|
|
|
viewFlag: subitem.viewFlag, |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
@@ -2533,6 +2536,10 @@ |
|
|
|
color: #2671E2; |
|
|
|
font-weight: 400; |
|
|
|
} |
|
|
|
|
|
|
|
.gray { |
|
|
|
color: #979797 !important; |
|
|
|
} |
|
|
|
|
|
|
|
.jiantobox { |
|
|
|
width: 30rpx; |
|
|
|