system-clients 3.2.34 → 3.2.35
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
@@ -63,7 +63,7 @@
|
|
63
63
|
<div class="auto login-operator1" v-if="$refs.mic.tabs.length === 0">
|
64
64
|
<span>
|
65
65
|
<img
|
66
|
-
src="
|
66
|
+
src="../../assets/people.png" height="15" width="15">
|
67
67
|
登录人:</span>
|
68
68
|
<label>{{ orgpathnames }}</label>
|
69
69
|
</div>
|
@@ -238,7 +238,7 @@ export default {
|
|
238
238
|
tabs: [], //已初始化页签数组
|
239
239
|
selecttab: '',
|
240
240
|
setting: true,
|
241
|
-
srcsetting: '
|
241
|
+
srcsetting: '../../../static/newStyle/setting.png',
|
242
242
|
showwatermakeflag: false,
|
243
243
|
// headerHint: true, // 右侧顶部提示信息
|
244
244
|
// value: 25645.26,
|
@@ -378,7 +378,7 @@ export default {
|
|
378
378
|
}
|
379
379
|
new HttpResetClass().load('POST','rs/path/operatorService/n', {data}, {resolveMsg: null, rejectMsg: null}).then(res=>{
|
380
380
|
if(res.data && res.data.n !== 0){
|
381
|
-
|
381
|
+
this.$showMessage('你有'+res.data.n+'个工单待处理,请尽快前往站点工单页面进行处理')
|
382
382
|
}
|
383
383
|
})
|
384
384
|
}
|
@@ -402,16 +402,16 @@ export default {
|
|
402
402
|
hindsetting() {
|
403
403
|
this.setting = !this.setting
|
404
404
|
if (this.setting) {
|
405
|
-
this.srcsetting = '
|
405
|
+
this.srcsetting = '../../../static/newStyle/setting.png'
|
406
406
|
} else {
|
407
|
-
this.srcsetting = '
|
407
|
+
this.srcsetting = '../../../static/newStyle/setting1.png'
|
408
408
|
}
|
409
409
|
|
410
410
|
},
|
411
411
|
hindsetting1() {
|
412
412
|
|
413
413
|
if (!this.setting) {
|
414
|
-
this.srcsetting = '
|
414
|
+
this.srcsetting = '../../../static/newStyle/setting.png'
|
415
415
|
this.setting = true
|
416
416
|
}
|
417
417
|
|