|
|
@@ -28,8 +28,10 @@ |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<!-- tab选择框 --> |
|
|
|
<u-tabs :list="list" :is-scroll="false" bg-color="transparent" :show-bar="false" :current="current" |
|
|
|
@change="change"></u-tabs> |
|
|
|
<template v-if="isShowMerge"> |
|
|
|
<u-tabs :list="list" :is-scroll="false" bg-color="transparent" :show-bar="false" :current="current" |
|
|
|
@change="change"></u-tabs> |
|
|
|
</template> |
|
|
|
<template v-if="current == 0"> |
|
|
|
<scroll-view :scroll-top="scrollTop" lower-threshold='100px' @scrolltolower="ltolower()" |
|
|
|
upper-threshold='40px' @scrolltoupper="rolltoupper()" :scroll-into-view="scrollId" scroll-y="true" |
|
|
@@ -144,15 +146,17 @@ |
|
|
|
|
|
|
|
<view class="botbotmm"> |
|
|
|
<view class="item" @click="preValid">上一条</view> |
|
|
|
<template v-if="userlistobj.violatedStatus == 0"> |
|
|
|
<view class="item" @click="setViolated(1)">确认有效</view> |
|
|
|
<view class="item" @tap="showTagValid">确认无效</view> |
|
|
|
</template> |
|
|
|
<template v-if="userlistobj.violatedStatus == 1"> |
|
|
|
<view class="item" @tap="showTagValid">无效</view> |
|
|
|
</template> |
|
|
|
<template v-if="userlistobj.violatedStatus == 2"> |
|
|
|
<view class="item" @click="setViolated(1)">确认有效</view> |
|
|
|
<template v-if="isShowMerge"> |
|
|
|
<template v-if="userlistobj.violatedStatus == 0"> |
|
|
|
<view class="item" @click="setViolated(1)">确认有效</view> |
|
|
|
<view class="item" @tap="showTagValid">确认无效</view> |
|
|
|
</template> |
|
|
|
<template v-if="userlistobj.violatedStatus == 1"> |
|
|
|
<view class="item" @tap="showTagValid">无效</view> |
|
|
|
</template> |
|
|
|
<template v-if="userlistobj.violatedStatus == 2"> |
|
|
|
<view class="item" @click="setViolated(1)">确认有效</view> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<view class="item" @click="nextValid">下一条</view> |
|
|
|
</view> |
|
|
@@ -245,6 +249,7 @@ |
|
|
|
reasonSrc: '', // 标记无效的原因 |
|
|
|
findTabooWordsList: [], // 违禁词列表 |
|
|
|
nextPageObj: JSON.parse(uni.getStorageSync('nextPageObj')), // 当前页面筛选内容 |
|
|
|
isMerge: 0, // 默认合并 |
|
|
|
} |
|
|
|
}, |
|
|
|
computed: { |
|
|
@@ -253,12 +258,17 @@ |
|
|
|
return this.getTime(e); |
|
|
|
} |
|
|
|
}, |
|
|
|
// 是否为合并录音 |
|
|
|
isShowMerge() { |
|
|
|
return this.isMerge == 0 ? true : false |
|
|
|
} |
|
|
|
}, |
|
|
|
onLoad(option) { |
|
|
|
this.status = option.status; |
|
|
|
this.customerId = option.customerId; |
|
|
|
this.stateisshow = option.stateisshow; |
|
|
|
this.itemobj = uni.getStorageSync('searchobj'); |
|
|
|
if (option.isMerge) this.isMerge = option.isMerge |
|
|
|
}, |
|
|
|
|
|
|
|
onShow() { |
|
|
|