瀏覽代碼

Merge branch 'wj' of http://git.2weisou.com/liumin/NewZkgj into wj

dev
happyboy 2 年之前
父節點
當前提交
c3138da06b
共有 1 個檔案被更改,包括 14 行新增2 行删除
  1. +14
    -2
      pages/center/prohibited/details.vue

+ 14
- 2
pages/center/prohibited/details.vue 查看文件

@@ -229,7 +229,17 @@
methods: {
// 确认无效标记 setViolatedStatus = 2
inputDone() {
this.setViolated(2)
if (!this.reasonSrc) {
uni.showToast({
title: '请输入标记无效的原因',
icon: 'none',
duration: 2000
})
return
}
this.$u.debounce(() => {
this.setViolated(2)
})
},

// 下一条
@@ -253,7 +263,7 @@
// 获取违禁话术详情
keyWordsMatching(params) {
this.$u.post('/customer/findbynum', params).then(res => {
this.customerId = res.customerId;
this.customerId = res.result[0].id;
uni.setStorageSync('nextPageObj', JSON.stringify(this.nextPageObj))
this.prohibitedMatch()
}).catch(e => {
@@ -325,6 +335,8 @@
title: '标记成功',
duration: 2000
});
this.initAudioFnc()
this.gituserlist()
setTimeout(() => {
this.tagValidShow = false
this.reasonSrc = ''


Loading…
取消
儲存