Browse Source

提交修改

newyun
douzhuo 1 year ago
parent
commit
c8e0f1ecea
2 changed files with 11 additions and 5 deletions
  1. +2
    -2
      manifest.json
  2. +9
    -3
      pages/mine/reception/addreception.vue

+ 2
- 2
manifest.json View File

@@ -1,5 +1,5 @@
{ {
"name" : "去房智控管家",
"name" : "数智工牌",
"appid" : "__UNI__7A1611D", "appid" : "__UNI__7A1611D",
"description" : "去房智控管家", "description" : "去房智控管家",
"versionName" : "1.1.0", "versionName" : "1.1.0",
@@ -91,7 +91,7 @@
}, },
"quickapp" : {}, "quickapp" : {},
"mp-weixin" : { "mp-weixin" : {
"appid" : "wx8f883dca5ecc5510",
"appid" : "wxe044603515ff2cb5",
"setting" : { "setting" : {
"urlCheck" : false, "urlCheck" : false,
"es6" : true, "es6" : true,


+ 9
- 3
pages/mine/reception/addreception.vue View File

@@ -122,6 +122,8 @@
tap: true, tap: true,
fdFlag: null, fdFlag: null,
isPass: false, // 当前顾问是否正在接待 isPass: false, // 当前顾问是否正在接待
fromBack: false, // 从选择顾问页面跳回
}; };
}, },


@@ -135,6 +137,7 @@
onLoad() { onLoad() {
uni.$on('addreception', customerId => { uni.$on('addreception', customerId => {
let obj = this.freeList.find(item => item.agentId == customerId) let obj = this.freeList.find(item => item.agentId == customerId)
this.fromBack = true
this.text = obj.name; this.text = obj.name;
this.parames.agentId = customerId; this.parames.agentId = customerId;
}) })
@@ -391,9 +394,12 @@
item.label = item.name + "(无设备)"; item.label = item.name + "(无设备)";
} }
item.value = item.agentId item.value = item.agentId
if (this.userInfo.accountId == item.agentId) {
this.text = item.label
this.parames.agentId = item.agentId;
// 从选择顾问页面跳回时需阻断用当前登录人的顾问id选中自身
if (!this.fromBack) {
if (this.userInfo.accountId == item.agentId) {
this.text = item.label
this.parames.agentId = item.agentId;
}
} }
}) })
}) })


Loading…
Cancel
Save