Browse Source

对话加命中标签

newyun
corala 1 year ago
parent
commit
d9beb9c6b4
2 changed files with 61 additions and 4 deletions
  1. +58
    -0
      pages/center/prohibited/details.vue
  2. +3
    -4
      pages/mine/details2.vue

+ 58
- 0
pages/center/prohibited/details.vue View File

@@ -68,6 +68,16 @@
</view>
</view>
</view>
<!-- 1 客户画像 2销讲词 3违禁 4 需求挖掘 -->
<view class="newmark" v-if="item.types">
<view class="mark-item" v-for="(subitem,i) in dealTypes(item.types)" :key="i">
<image v-if="dealword(subitem)[0]==3" class="markicon"
src="https://static.quhouse.com/8443a2ecb81d4639991ab29c422e9949.png"></image>
<view class="marktext" v-if="dealword(subitem)[0]==3" :style="dealword(subitem)[0]==3?'color:#E7483C':'color:#3E50E8'">
{{dealword(subitem)[1]}}
</view>
</view>
</view>
</block>
</view>
</scroll-view>
@@ -326,6 +336,26 @@
},

methods: {
// 对话加命中标签
dealTypes(type) {
if (type) {
let tem = type.split(',')
return tem
} else {
return []
}
},
// 对话加命中标签
dealword(type) {
if (type) {
let a = type.split('-')
let rest = type.substring(2).split('-').join(',')
let arr = [a[0], rest]
return arr
} else {
return []
}
},
// 获取违禁词
findTabooWords() {
this.$u.get('/customer/findTabooWords', {
@@ -1141,6 +1171,34 @@
color: #333333;
}
}
// 违禁正则标签
.newmark {
margin: 30rpx 0 10rpx 120rpx;

.mark-item {
display: flex;
flex-wrap: wrap;
margin-bottom: 12rpx;

.markicon {
width: 30rpx;
height: 30rpx;
margin-right: 12rpx;
}

.marktext {
font-size: 24rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #3E50E8;
min-height: 30rpx;
line-height: 30rpx;
max-width: 420rpx;
text-align: left;
word-break: break-all;
}
}
}

.text {
margin: 50upx 30upx;


+ 3
- 4
pages/mine/details2.vue View File

@@ -862,7 +862,8 @@
// 对话加命中标签
dealTypes(type) {
if (type) {
let tem = type.substring(1).split(',')
let tem = type.split(',')
// let tem = type.substring(1).split(',')
return tem
} else {
return []
@@ -879,8 +880,6 @@
return []
}
},


// 跳转设备日志页面
eqLogClick() {
uni.navigateTo({
@@ -2158,7 +2157,7 @@
.scroll-Y .text[data-speaker="4"] .newmark,
.scroll-Y .text[data-speaker="8"] .newmark,
.scroll-Y .text[data-speaker="6"] .newmark {
margin-left: 84rpx;
// margin-left: 84rpx;
}
.box {
width: 100%;


Loading…
Cancel
Save