Sfoglia il codice sorgente

修改接待次数

trunk1017
douzhuo 1 anno fa
parent
commit
0dbc14d114
1 ha cambiato i file con 4 aggiunte e 3 eliminazioni
  1. +4
    -3
      pages/mine/details2.vue

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

@@ -740,7 +740,7 @@
position += 70
}

if (this.userlistobj.visitRecord == 1 && this.checkAuthority('修改到访次数')) {
if ((this.userlistobj.visitRecord == 1 || this.userlistobj.visitFlag == 1) && this.checkAuthority('修改到访次数')) {
position += 70
}

@@ -1067,12 +1067,13 @@
}
},

//获取用户信息
// 获取
gituserlist() {
this.$u.get("/matchKeywords/personalReceptionRecord", {
customerId: this.customerId
}).then(res => {
res.endTime1 = res.endTime.substring(0, 19);
this.visitParams.visitRecordNum = res.visitRecord || 1
this.userlistobj = res;
})
},
@@ -1331,6 +1332,7 @@
//确认标记
Confirmthetag() {
var num = this.roleindexbiaoji + 1;
this.biojiisshow = false;
uni.request({
url: config.service.markConsultant + '?id=' + this.luyinList[this.csdFileindex].id +
"&speaker=" + num + '&customerId=' + this.customerId, //仅为示例,并非真实接口地址。
@@ -1340,7 +1342,6 @@
'Access-Token': uni.getStorageSync('weapp_session_login_data').token
},
success: (data) => {
this.biojiisshow = false;
this.biaojiyuyi()
this.fenjiaoseunfo('refresh')
uni.showToast({


Caricamento…
Annulla
Salva