system-clients 3.2.71 → 3.2.72-yc-1
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/App.vue +24 -24
- package/src/components/Main.vue +923 -847
- package/src/components/equipment/EquipmentManage.vue +65 -65
- package/src/components/equipment/PcAdd.vue +105 -105
- package/src/components/equipment/PcList.vue +119 -119
- package/src/components/equipment/PcManage.vue +60 -60
- package/src/components/equipment/PhoneAdd.vue +107 -107
- package/src/components/equipment/PhoneList.vue +112 -112
- package/src/components/equipment/PhoneManage.vue +60 -60
- package/src/components/equipment/PosAdd.vue +323 -323
- package/src/components/equipment/PosList.vue +294 -294
- package/src/components/equipment/PosParamAdd.vue +236 -236
- package/src/components/equipment/PosParamList.vue +121 -121
- package/src/components/parammanage/ParamPage.vue +337 -337
- package/src/components/parammanage/SinglePage.vue +235 -235
- package/src/components/server/LoadData.vue +58 -55
- package/src/components/server/Login.vue +566 -566
- package/src/components/server/ModifyPw.vue +125 -125
- package/src/components/server/PcdBuildingSelect.vue +241 -241
- package/src/components/server/ResSelect.vue +155 -155
- package/src/components/server/ResSelectGroup.vue +198 -198
- package/src/components/server/RightTree.vue +348 -348
- package/src/components/server/RoleSelector.vue +88 -88
- package/src/filiale/baole/Login.vue +568 -568
- package/src/filiale/chengtou/Login.vue +537 -537
- package/src/filiale/dongguan/Login.vue +900 -900
- package/src/filiale/dongguan/Main.vue +715 -715
- package/src/filiale/furuike/Login.vue +583 -583
- package/src/filiale/furuike/Main.vue +827 -827
- package/src/filiale/gehua/Main.vue +807 -807
- package/src/filiale/konggang/Login.vue +470 -470
- package/src/filiale/konggang/system.js +7 -7
- package/src/filiale/qianneng/Login.vue +566 -0
- package/src/filiale/qianneng/Main.vue +816 -816
- package/src/filiale/qianneng/ModifyPw.vue +107 -107
- package/src/filiale/qianneng/system.js +3 -0
- package/src/filiale/rizhao/Login.vue +791 -791
- package/src/filiale/rizhao/Main.vue +611 -611
- package/src/filiale/shiquan/Login.vue +564 -564
- package/src/filiale/tianyi/Login.vue +571 -571
- package/src/filiale/tongchuan/Login.vue +561 -561
- package/src/filiale/tongchuan/system.js +7 -7
- package/src/filiale/wenxi/Login.vue +535 -535
- package/src/filiale/wenxi/Main.vue +785 -785
- package/src/filiale/wuhai/Main.vue +807 -807
- package/src/filiale/yuchuan/Login.vue +889 -889
- package/src/filiale/yuchuan/Main.vue +864 -864
- package/src/filiale/zhoukou/Main.vue +807 -807
- package/src/plugins/GetLoginInfoService.js +533 -533
- package/src/plugins/validation.js +15 -15
- package/src/stores/AppData.js +38 -38
- package/src/styles/less/aofeng/standard.less +2507 -2507
- package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +686 -686
@@ -1,60 +1,60 @@
|
|
1
|
-
<template>
|
2
|
-
<div class="flex-row">
|
3
|
-
<div :class="{'basic-main':!isChange,'binary-left':isChange}">
|
4
|
-
<phone-list :row="row" @select-changed="selected" style="width:auto;" v-ref:list ></phone-list>
|
5
|
-
</div>
|
6
|
-
<div class="binary-right" style="margin-left: 10px; width: 50%;" v-if="isChange">
|
7
|
-
<phone-add :data="row" v-ref:addbox></phone-add>
|
8
|
-
</div>
|
9
|
-
</div>
|
10
|
-
</template>
|
11
|
-
<script>
|
12
|
-
|
13
|
-
import PhoneList from './PhoneList'
|
14
|
-
import PhoneAdd from './PhoneAdd'
|
15
|
-
|
16
|
-
export default {
|
17
|
-
title: 'PC终端管理',
|
18
|
-
components: {
|
19
|
-
PhoneList, PhoneAdd
|
20
|
-
},
|
21
|
-
data () {
|
22
|
-
return {
|
23
|
-
isChange: false,
|
24
|
-
row: null
|
25
|
-
}
|
26
|
-
},
|
27
|
-
methods: {
|
28
|
-
selected (obj) {
|
29
|
-
this.isChange = true
|
30
|
-
this.row = obj.val
|
31
|
-
}
|
32
|
-
},
|
33
|
-
events: {
|
34
|
-
'search' () {
|
35
|
-
this.isChange = false
|
36
|
-
this.row = null
|
37
|
-
this.$refs.list.$refs.paged.$refs.cri.search()
|
38
|
-
},
|
39
|
-
'refresh' () {
|
40
|
-
this.isChange = false
|
41
|
-
this.row = null
|
42
|
-
this.$refs.list.search()
|
43
|
-
},
|
44
|
-
'error' (name, row, res) {
|
45
|
-
this.isChange = false
|
46
|
-
this.row = null
|
47
|
-
},
|
48
|
-
'close' () {
|
49
|
-
this.isChange = false
|
50
|
-
this.row = null
|
51
|
-
this.$refs.list.search()
|
52
|
-
},
|
53
|
-
'add' () {
|
54
|
-
this.row = null
|
55
|
-
this.isChange = true
|
56
|
-
this.$refs.list.$refs.paged.$refs.grid.selectStore.selected = null
|
57
|
-
}
|
58
|
-
}
|
59
|
-
}
|
60
|
-
</script>
|
1
|
+
<template>
|
2
|
+
<div class="flex-row">
|
3
|
+
<div :class="{'basic-main':!isChange,'binary-left':isChange}">
|
4
|
+
<phone-list :row="row" @select-changed="selected" style="width:auto;" v-ref:list ></phone-list>
|
5
|
+
</div>
|
6
|
+
<div class="binary-right" style="margin-left: 10px; width: 50%;" v-if="isChange">
|
7
|
+
<phone-add :data="row" v-ref:addbox></phone-add>
|
8
|
+
</div>
|
9
|
+
</div>
|
10
|
+
</template>
|
11
|
+
<script>
|
12
|
+
|
13
|
+
import PhoneList from './PhoneList'
|
14
|
+
import PhoneAdd from './PhoneAdd'
|
15
|
+
|
16
|
+
export default {
|
17
|
+
title: 'PC终端管理',
|
18
|
+
components: {
|
19
|
+
PhoneList, PhoneAdd
|
20
|
+
},
|
21
|
+
data () {
|
22
|
+
return {
|
23
|
+
isChange: false,
|
24
|
+
row: null
|
25
|
+
}
|
26
|
+
},
|
27
|
+
methods: {
|
28
|
+
selected (obj) {
|
29
|
+
this.isChange = true
|
30
|
+
this.row = obj.val
|
31
|
+
}
|
32
|
+
},
|
33
|
+
events: {
|
34
|
+
'search' () {
|
35
|
+
this.isChange = false
|
36
|
+
this.row = null
|
37
|
+
this.$refs.list.$refs.paged.$refs.cri.search()
|
38
|
+
},
|
39
|
+
'refresh' () {
|
40
|
+
this.isChange = false
|
41
|
+
this.row = null
|
42
|
+
this.$refs.list.search()
|
43
|
+
},
|
44
|
+
'error' (name, row, res) {
|
45
|
+
this.isChange = false
|
46
|
+
this.row = null
|
47
|
+
},
|
48
|
+
'close' () {
|
49
|
+
this.isChange = false
|
50
|
+
this.row = null
|
51
|
+
this.$refs.list.search()
|
52
|
+
},
|
53
|
+
'add' () {
|
54
|
+
this.row = null
|
55
|
+
this.isChange = true
|
56
|
+
this.$refs.list.$refs.paged.$refs.grid.selectStore.selected = null
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
</script>
|