system-clients 3.2.66-wuhai → 3.2.67-wuhai
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/components/Main.vue
CHANGED
@@ -383,7 +383,7 @@ export default {
|
|
383
383
|
}
|
384
384
|
},
|
385
385
|
openUrl() {
|
386
|
-
var url = `http://
|
386
|
+
var url = `http://aote-office.8866.org:8406/submitTicket?contact=${this.$login.f.name}&orgName=${this.$login.f.orgs}&phone=${this.$login.f.f_user_telephone}`
|
387
387
|
window.open(url, '_blank')
|
388
388
|
},
|
389
389
|
hindsetting() {
|
@@ -72,7 +72,7 @@
|
|
72
72
|
<div class="span system-left-tree " style="height:85%">
|
73
73
|
<h3>{{ systemname }}</h3>
|
74
74
|
<!-- <div class="span" style="margin-bottom:10px;padding-bottom:5px;padding-top:5px;flex: 1;border-top: 1px solid #e5e5e5;border-bottom: 1px solid #e5e5e5;">-->
|
75
|
-
<left-tree :functions='functions.functions' :wechatnub='WeChatNub' :userid='userid' @isnodo="isnodo" v-show="treeOrIcon"
|
75
|
+
<left-tree :functions='functions.functions' :wechatnub='WeChatNub' :ordernum='OrderNum' :userid='userid' @isnodo="isnodo" v-show="treeOrIcon"
|
76
76
|
:tabs="tabs" v-ref:tree></left-tree>
|
77
77
|
<!--<!– <icon-tree :functions='functions.functions' :userid='userid' v-show="!treeOrIcon"></icon-tree>–>-->
|
78
78
|
</div>
|
@@ -242,6 +242,8 @@ export default {
|
|
242
242
|
showwatermakeflag: false,
|
243
243
|
//获取微信投诉和咨询条数
|
244
244
|
WeChatNub: undefined,
|
245
|
+
// 咨询条数
|
246
|
+
OrderNum: undefined,
|
245
247
|
// headerHint: true, // 右侧顶部提示信息
|
246
248
|
// value: 25645.26,
|
247
249
|
// AddChangeMsgShow: false,
|
@@ -486,12 +488,12 @@ export default {
|
|
486
488
|
},{resolveMsg: null, rejectMsg: null});
|
487
489
|
if (WeChatData.data.length > 0){
|
488
490
|
this.WeChatNub = WeChatData.data.length
|
491
|
+
console.log('获取数值为:'+ this.WeChatNub)
|
492
|
+
this.$refs.tree.setNum('投诉咨询', this.WeChatNub)
|
489
493
|
}
|
490
|
-
console.log('获取数值为:'+ this.WeChatNub)
|
491
|
-
this.$refs.tree.setNum('投诉咨询', this.WeChatNub)
|
492
494
|
},
|
493
495
|
async orderCount() {
|
494
|
-
let
|
496
|
+
let orderData = await new HttpResetClass().load('POST','rs/sql/singleTable_OrderBy', {
|
495
497
|
data: {
|
496
498
|
items: 'id',
|
497
499
|
tablename: 't_order_center',
|
@@ -499,10 +501,10 @@ export default {
|
|
499
501
|
orderitem: 'f_orderdate'
|
500
502
|
}
|
501
503
|
}, {resolveMsg: null, rejectMsg: null});
|
502
|
-
if (
|
503
|
-
this.
|
504
|
+
if (orderData.data.length > 0) {
|
505
|
+
this.OrderNum = orderData.data.length
|
506
|
+
this.$refs.tree.setNum('预约中心', this.OrderNum)
|
504
507
|
}
|
505
|
-
this.$refs.tree.setNum('预约中心', this.WeChatNub)
|
506
508
|
}
|
507
509
|
},
|
508
510
|
computed: {
|