system-clients 3.2.67 → 3.2.68-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 +105 -105
- package/src/components/Main.vue +182 -202
- package/src/components/server/Login.vue +5 -0
- package/src/filiale/dongguan/Main.vue +1 -1
- package/src/filiale/furuike/Main.vue +1 -1
- package/src/filiale/gehua/Main.vue +1 -1
- package/src/filiale/qianneng/Main.vue +1 -1
- package/src/filiale/rizhao/Main.vue +1 -1
- package/src/filiale/wenxi/Main.vue +1 -1
- package/src/filiale/wuhai/LeftTree.vue +17 -6
- package/src/filiale/wuhai/Main.vue +22 -5
- package/src/filiale/yuchuan/Main.vue +773 -869
- package/src/filiale/zhoukou/Main.vue +1 -1
- package/src/plugins/GetLoginInfoService.js +7 -3
@@ -363,7 +363,7 @@ export default {
|
|
363
363
|
}
|
364
364
|
},
|
365
365
|
openUrl() {
|
366
|
-
var url = `http://
|
366
|
+
var url = `http://aote-office.8866.org:8406/submitTicket?personName=${this.$login.f.name}&orgName=${this.$login.f.orgs}`
|
367
367
|
window.open(url, '_blank')
|
368
368
|
},
|
369
369
|
hindsetting() {
|
@@ -372,7 +372,7 @@ export default {
|
|
372
372
|
}
|
373
373
|
},
|
374
374
|
openUrl() {
|
375
|
-
var url = `http://
|
375
|
+
var url = `http://aote-office.8866.org:8406/submitTicket?personName=${this.$login.f.name}&orgName=${this.$login.f.orgs}`
|
376
376
|
window.open(url, '_blank')
|
377
377
|
},
|
378
378
|
hindsetting() {
|
@@ -216,7 +216,7 @@ export default {
|
|
216
216
|
}
|
217
217
|
},
|
218
218
|
openUrl() {
|
219
|
-
var url = `http://
|
219
|
+
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}`
|
220
220
|
window.open(url, '_blank')
|
221
221
|
},
|
222
222
|
hindsetting() {
|
@@ -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() {
|
@@ -5,9 +5,10 @@
|
|
5
5
|
<div class="col-sm-2" >
|
6
6
|
<img v-if="isFolder(row)" :src="row.data.icon" alt="">
|
7
7
|
</div>
|
8
|
-
<div class="col-sm-
|
9
|
-
<span class="unreadResumeWarning11" v-show="row.data.name === '微信管理' && $parent.$parent.
|
8
|
+
<div class="col-sm-10" style="padding-left:6%;text-align: left" title="{{row.data.name}}">{{row.data.name}}
|
9
|
+
<span class="unreadResumeWarning11" v-show="row.data.name === '微信管理' && $parent.$parent.todo"></span>
|
10
10
|
<span class="unreadResumeWarning" v-show="row.data.name === '投诉咨询' && $parent.$parent.wechatnub">{{$parent.$parent.wechatnub}}</span>
|
11
|
+
<span class="unreadResumeWarning" v-show="row.data.name === '预约中心' && $parent.$parent.ordernum">{{$parent.$parent.ordernum}}</span>
|
11
12
|
</div>
|
12
13
|
</span>
|
13
14
|
</tree>
|
@@ -21,16 +22,23 @@ export default {
|
|
21
22
|
title: '左侧树菜单',
|
22
23
|
data () {
|
23
24
|
return {
|
25
|
+
todo: false,
|
24
26
|
index: -1,
|
25
27
|
wechatnub: 0,
|
28
|
+
ordernum: 0,
|
26
29
|
name: null,
|
27
30
|
tbcg:[]
|
28
31
|
}
|
29
32
|
},
|
30
33
|
methods: {
|
31
|
-
setNum(val){
|
34
|
+
setNum(type,val){
|
35
|
+
this.todo = true
|
32
36
|
console.log("=====",val)
|
33
|
-
|
37
|
+
if (type === '投诉咨询') {
|
38
|
+
this.wechatnub = val
|
39
|
+
} else if (type === '预约中心') {
|
40
|
+
this.ordernum = val
|
41
|
+
}
|
34
42
|
},
|
35
43
|
open (row) {
|
36
44
|
if (row.data.name === '资源管理') {
|
@@ -128,14 +136,17 @@ export default {
|
|
128
136
|
position: absolute;
|
129
137
|
left: 70px;
|
130
138
|
top: 0px;
|
139
|
+
margin-left: 10px;
|
131
140
|
}
|
132
141
|
.unreadResumeWarning {
|
133
|
-
|
142
|
+
text-align: center;
|
143
|
+
min-width: 20px;
|
134
144
|
height: 20px;
|
135
|
-
border-radius:
|
145
|
+
border-radius: 10px;
|
136
146
|
background-color: #FF3B30;
|
137
147
|
position: absolute;
|
138
148
|
left: 60px;
|
139
149
|
top: 0px;
|
150
|
+
margin-left: 10px;
|
140
151
|
}
|
141
152
|
</style>
|
@@ -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,
|
@@ -299,6 +301,7 @@ export default {
|
|
299
301
|
},
|
300
302
|
created () {
|
301
303
|
this.WechatOfComplaintAndConsult()
|
304
|
+
this.orderCount()
|
302
305
|
},
|
303
306
|
methods: {
|
304
307
|
getOrderList(){
|
@@ -388,7 +391,7 @@ export default {
|
|
388
391
|
}
|
389
392
|
},
|
390
393
|
openUrl() {
|
391
|
-
var url = `http://
|
394
|
+
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}`
|
392
395
|
window.open(url, '_blank')
|
393
396
|
},
|
394
397
|
hindsetting() {
|
@@ -479,15 +482,29 @@ export default {
|
|
479
482
|
data:{
|
480
483
|
items: 'f_isreply',
|
481
484
|
tablename: 't_comment',
|
482
|
-
condition:
|
485
|
+
condition: " 1=1 and f_isreply = '0' and f_orgid = '37710' and f_pid = '0'",
|
483
486
|
orderitem: 'f_isreply'
|
484
487
|
}
|
485
488
|
},{resolveMsg: null, rejectMsg: null});
|
486
489
|
if (WeChatData.data.length > 0){
|
487
490
|
this.WeChatNub = WeChatData.data.length
|
491
|
+
console.log('获取数值为:'+ this.WeChatNub)
|
492
|
+
this.$refs.tree.setNum('投诉咨询', this.WeChatNub)
|
493
|
+
}
|
494
|
+
},
|
495
|
+
async orderCount() {
|
496
|
+
let orderData = await new HttpResetClass().load('POST','rs/sql/singleTable_OrderBy', {
|
497
|
+
data: {
|
498
|
+
items: 'id',
|
499
|
+
tablename: 't_order_center',
|
500
|
+
condition: ` f_orgstr ='${this.$login.f.orgid}' and f_orderstate is null `,
|
501
|
+
orderitem: 'f_orderdate'
|
502
|
+
}
|
503
|
+
}, {resolveMsg: null, rejectMsg: null});
|
504
|
+
if (orderData.data.length > 0) {
|
505
|
+
this.OrderNum = orderData.data.length
|
506
|
+
this.$refs.tree.setNum('预约中心', this.OrderNum)
|
488
507
|
}
|
489
|
-
console.log('获取数值为:'+ this.WeChatNub)
|
490
|
-
this.$refs.tree.setNum(this.WeChatNub)
|
491
508
|
}
|
492
509
|
},
|
493
510
|
computed: {
|