Browse Source

提交修改

newStyle
风继续吹 1 year ago
parent
commit
bd8cf9c00b
3 changed files with 19 additions and 11 deletions
  1. +1
    -1
      pages/center/records/index.vue
  2. +1
    -0
      pages/mine/details.vue
  3. +17
    -10
      pages/mine/details2.vue

+ 1
- 1
pages/center/records/index.vue View File

@@ -52,7 +52,7 @@
<text style="margin-right: 6rpx;" v-if="item.taboo==1"> |</text> <text style="margin-right: 6rpx;" v-if="item.taboo==1"> |</text>
</view> </view>
<view v-if="item.validInvalidName" style="margin-right: 6rpx;"> <view v-if="item.validInvalidName" style="margin-right: 6rpx;">
{{item.validInvalidName.slice(0, 2)||''}}
{{item.validInvalidName ||''}}
</view> </view>
<text style="margin-right: 6rpx;" v-if="item.validInvalidName"> |</text> <text style="margin-right: 6rpx;" v-if="item.validInvalidName"> |</text>
<view v-if="item.markAdvisor==0" class="">未标记</view> <view v-if="item.markAdvisor==0" class="">未标记</view>


+ 1
- 0
pages/mine/details.vue View File

@@ -907,6 +907,7 @@
} }
}) })
}) })
console.log(level1)
level1[0].show = true; level1[0].show = true;
this.ratelist = level1 this.ratelist = level1
} }


+ 17
- 10
pages/mine/details2.vue View File

@@ -1320,30 +1320,37 @@
var that = this; var that = this;
let msg = ''; let msg = '';
if (this.userlistobj.validInvalid != 0) { if (this.userlistobj.validInvalid != 0) {
msg = '是否标记为"有效录音"?';
if (this.userlistobj.validInvalid == 0 || this.userlistobj.validInvalid == 1) {
msg = '是否标记为"有效录音"?';
} else {
msg = '是否撤销"无效(待审核)"?';
}
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
content: msg, content: msg,
success: function(res) {
if (that.noClick) {
that.noClick = false;
success: (res) => {
if (this.noClick) {
this.noClick = false;
if (res.confirm) { if (res.confirm) {
let parames = { let parames = {
id: that.customerId,
id: this.customerId,
validInvalid: '', validInvalid: '',
invalidReason: 0 invalidReason: 0
} }
if (that.userlistobj.validInvalid == 0) {
if (this.userlistobj.validInvalid == 0) {
parames.validInvalid = 1; parames.validInvalid = 1;
} else {
} else if (this.userlistobj.validInvalid == 1) {
parames.validInvalid = 0; parames.validInvalid = 0;
} else if (this.userlistobj.validInvalid == 2) {
parames.auditReception = 1
parames.validInvalid = 1;
} }
that.$u.post("/customer/updateValidInvalid", parames).then(res => {
that.Thetapeidisshow = false;
this.$u.post("/customer/updateValidInvalid", parames).then(res => {
this.Thetapeidisshow = false;
}) })
} }
setTimeout(() => { setTimeout(() => {
that.noClick = true;
this.noClick = true;
}, 2000) }, 2000)
} else { } else {
// 这里是重复点击的判断 // 这里是重复点击的判断


Loading…
Cancel
Save