system-clients 3.1.93 → 3.1.95-aode

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.
Files changed (46) hide show
  1. package/.eslintrc.js +16 -16
  2. package/build/webpack.base.conf.js +78 -85
  3. package/package.json +102 -102
  4. package/src/components/Main.vue +30 -107
  5. package/src/components/equipment/EquipmentManage.vue +65 -65
  6. package/src/components/equipment/PcAdd.vue +5 -5
  7. package/src/components/equipment/PcList.vue +5 -5
  8. package/src/components/equipment/PhoneAdd.vue +4 -4
  9. package/src/components/equipment/PhoneList.vue +4 -4
  10. package/src/components/equipment/PosAdd.vue +137 -323
  11. package/src/components/equipment/PosList.vue +164 -294
  12. package/src/components/equipment/PosManage.vue +67 -138
  13. package/src/components/parammanage/ParamManage.vue +2 -2
  14. package/src/components/parammanage/ParamPage.vue +7 -7
  15. package/src/components/parammanage/SinglePage.vue +4 -4
  16. package/src/components/server/Login.vue +42 -48
  17. package/src/components/server/ResSelect.vue +0 -5
  18. package/src/components/server/ResSelectGroup.vue +118 -155
  19. package/src/components/server/RightTree.vue +257 -262
  20. package/src/plugins/GetLoginInfoService.js +7 -7
  21. package/src/styles/less/aofeng/standard.less +60 -446
  22. package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +13 -13
  23. package/src/styles/less/aofeng/themeOne/systemStyle.less +6 -6
  24. package/src/styles/less/tables.less +0 -50
  25. package/src/styles/less/type.less +3 -16
  26. package/src/styles/less/variables.less +3 -6
  27. package/src/system.js +83 -93
  28. package/static/aodelogo.png +0 -0
  29. package/static/aodenewlogo.png +0 -0
  30. package/static/{logo.png → ewmlogo.png} +0 -0
  31. package/.gradle/5.2.1/gc.properties +0 -0
  32. package/.gradle/vcs-1/gc.properties +0 -0
  33. package/src/components/TabButton.vue +0 -201
  34. package/src/components/Tabs.vue +0 -67
  35. package/src/components/equipment/PosManageBoth.vue +0 -125
  36. package/src/components/equipment/PosParamAdd.vue +0 -236
  37. package/src/components/equipment/PosParamList.vue +0 -121
  38. package/src/components/equipment/PosParamManage.vue +0 -51
  39. package/src/components/server/ImageVieweTest.vue +0 -56
  40. package/src/components/server/ImageViewer.vue +0 -350
  41. package/src/components/server/PcdBuildingSelect.vue +0 -241
  42. package/src/styles/less/manageStyle/manageStyle/manageChile.less +0 -180
  43. package/src/styles/less/manageStyle/manageStyle/manageStyle.less +0 -1102
  44. package/src/styles/less/manageStyle/manageStyle/safeStyle.less +0 -498
  45. package/static/newStyle/about-us.png +0 -0
  46. package/yarn-error.log +0 -6896
@@ -1,65 +1,65 @@
1
- <template>
2
- <div class="flex">
3
- <div class="auto">
4
- <div class="form-horizontal select-overspread" style="background: white; padding: 0 1%;">
5
- <div class="row">
6
- <div class="col-sm-2 form-group">
7
- <label class="font_normal_body" title="参数管理:终端类型">终端类型</label>
8
- <v-select id="f_charge_type"
9
- v-model="model.f_equipment_type"
10
- placeholder='终端类型'
11
- :value.sync="model.f_equipment_type"
12
- :options='equipmentType'
13
- close-on-select clear-button>
14
- </v-select>
15
- </div>
16
- </div>
17
- </div>
18
- </div>
19
- <div v-if="model.f_equipment_type[0] === 'PC'">
20
- <pc-manage></pc-manage>
21
- </div>
22
- <div v-if="model.f_equipment_type[0] === 'POS'">
23
- <pos-manage></pos-manage>
24
- </div>
25
- <div v-if="model.f_equipment_type[0] === 'PHONE'">
26
- <phone-manage></phone-manage>
27
- </div>
28
- </div>
29
- </template>
30
-
31
- <script>
32
-
33
- export default {
34
- title: '终端控制',
35
- data () {
36
- return {
37
- filialeNameStr: this.$login.f.f_fengongsi,
38
- filialeCodeStr: this.$login.f.orgid,
39
- userid:this.$login.f.id,
40
- source: `tool.getFullTree(this.getRights().where(row.getType() != $zone$).where(row.getType() != $role$))`,
41
- equipmentType: this.$appdata.getParam('终端类型'),
42
- model: {
43
- f_equipment_type: []
44
- }
45
- }
46
- },
47
- ready () {
48
- console.log('看看终端类型', this.equipmentType)
49
- this.model.f_equipment_type = [this.equipmentType[0].value]
50
- },
51
- methods: {
52
- del (row) {
53
- console.log('要删除了', row)
54
- },
55
-
56
- getRes (obj) {
57
- this.filialeNameStr = obj.res
58
- this.filialeCodeStr = obj.resids
59
- },
60
- },
61
- computed: {
62
-
63
- }
64
- }
65
- </script>
1
+ <template>
2
+ <div class="flex">
3
+ <div class="auto">
4
+ <div class="form-horizontal select-overspread" style="background: white; padding: 0 1%;">
5
+ <div class="row">
6
+ <div class="col-sm-2 form-group">
7
+ <label class="font_normal_body">终端类型</label>
8
+ <v-select id="f_charge_type"
9
+ v-model="model.f_equipment_type"
10
+ placeholder='终端类型'
11
+ :value.sync="model.f_equipment_type"
12
+ :options='equipmentType'
13
+ close-on-select clear-button>
14
+ </v-select>
15
+ </div>
16
+ </div>
17
+ </div>
18
+ </div>
19
+ <div v-if="model.f_equipment_type[0] === 'PC'">
20
+ <pc-manage></pc-manage>
21
+ </div>
22
+ <div v-if="model.f_equipment_type[0] === 'POS'">
23
+ <pos-manage></pos-manage>
24
+ </div>
25
+ <div v-if="model.f_equipment_type[0] === 'PHONE'">
26
+ <phone-manage></phone-manage>
27
+ </div>
28
+ </div>
29
+ </template>
30
+
31
+ <script>
32
+
33
+ export default {
34
+ title: '终端控制',
35
+ data () {
36
+ return {
37
+ filialeNameStr: this.$login.f.f_fengongsi,
38
+ filialeCodeStr: this.$login.f.orgid,
39
+ userid:this.$login.f.id,
40
+ source: `tool.getFullTree(this.getRights().where(row.getType() != $zone$).where(row.getType() != $role$))`,
41
+ equipmentType: this.$appdata.getParam('终端类型'),
42
+ model: {
43
+ f_equipment_type: []
44
+ }
45
+ }
46
+ },
47
+ ready () {
48
+ console.log('看看终端类型', this.equipmentType)
49
+ this.model.f_equipment_type = [this.equipmentType[0].value]
50
+ },
51
+ methods: {
52
+ del (row) {
53
+ console.log('要删除了', row)
54
+ },
55
+
56
+ getRes (obj) {
57
+ this.filialeNameStr = obj.res
58
+ this.filialeCodeStr = obj.resids
59
+ },
60
+ },
61
+ computed: {
62
+
63
+ }
64
+ }
65
+ </script>
@@ -1,23 +1,23 @@
1
1
  <template>
2
- <div class="row select-overspread">
2
+ <div class="auto select-overspread">
3
3
  <validator name='v'>
4
4
  <ul class="nav nav-tabs" >
5
5
  <li role="presentation" class="active"><a href="#">PC端MAC</a></li>
6
6
  </ul>
7
7
  <form class="form-horizontal">
8
- <div class="col-sm-6 form-group">
8
+ <div class="col-sm-6">
9
9
  <label class="font_normal_body">使用人员</label>
10
10
  <input type="text" style="width: 60%" class="input_search" v-model="model.f_username" placeholder="使用人员" >
11
11
  </div>
12
- <div class="col-sm-6 form-group">
12
+ <div class="col-sm-6">
13
13
  <label class="font_normal_body">所属地址</label>
14
14
  <input type="text" style="width: 60%" class="input_search" v-model="model.f_mac_outlets" placeholder="所属地址" >
15
15
  </div>
16
- <div class="col-sm-6 form-group">
16
+ <div class="col-sm-6">
17
17
  <label class="font_normal_body">mac地址</label>
18
18
  <input type="text" style="width: 60%" class="input_search" v-model="model.f_mac_number" placeholder="mac地址" >
19
19
  </div>
20
- <div class="col-sm-6 form-group">
20
+ <div class="col-sm-6">
21
21
  <label class="font_normal_body">使用公司</label>
22
22
 
23
23
  <res-select restype='organization'
@@ -4,7 +4,7 @@
4
4
  <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
5
5
  <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
6
  <div class="row">
7
- <div class="col-sm-3 form-group">
7
+ <div class="col-sm-3">
8
8
  <label class="font_normal_body">使用公司</label>
9
9
  <res-select restype='organization'
10
10
  is-mul="false"
@@ -13,12 +13,12 @@
13
13
  </res-select>
14
14
  </div>
15
15
 
16
- <div class="col-sm-3 form-group" >
16
+ <div class="col-sm-3" >
17
17
  <label class="font_normal_body">使用人员</label>
18
18
  <input type="text" class="input_search" style="width:60%" v-model="model.f_username"
19
19
  condition="f_username like '%{}%'" placeholder="使用人员">
20
20
  </div>
21
- <div class="col-sm-3 form-group" >
21
+ <div class="col-sm-3" >
22
22
  <label class="font_normal_body">所属地址</label>
23
23
  <input type="text" class="input_search" style="width:60%" v-model="model.f_mac_outlets"
24
24
  condition="f_mac_outlets like '%{}%'" placeholder="所属地址">
@@ -31,7 +31,7 @@
31
31
  </div>
32
32
  </div>
33
33
  <div class="row" v-show="$parent.$parent.criteriaShow">
34
- <div class="col-sm-3 form-group" >
34
+ <div class="col-sm-3" >
35
35
  <label class="font_normal_body">MAC地址</label>
36
36
  <input type="text" class="input_search" style="width:60%" v-model="model.f_mac_number"
37
37
  condition="f_mac_number like '%{}%'" placeholder="MAC地址">
@@ -58,7 +58,7 @@
58
58
  <td style="text-align:center">{{row.f_mac_outlets}}</td>
59
59
  <td style="text-align:center">{{row.f_mac_number}}</td>
60
60
  <td style="text-align:center">
61
- <button class="btn btn-danger" @click.stop="$parent.$parent.$parent.del(row)">删除</button>
61
+ <button class="btn btn-link" @click.stop="$parent.$parent.$parent.del(row)">删除</button>
62
62
  </td>
63
63
  </tr>
64
64
  </template>
@@ -1,20 +1,20 @@
1
1
  <template>
2
- <div class="row select-overspread">
2
+ <div class="auto select-overspread">
3
3
  <validator name='v'>
4
4
  <ul class="nav nav-tabs" >
5
5
  <li role="presentation" class="active"><a href="#">Phone端设备号</a></li>
6
6
  </ul>
7
7
  <form class="form-horizontal">
8
8
 
9
- <div class="col-sm-6 form-group">
9
+ <div class="col-sm-6">
10
10
  <label class="font_normal_body">使用人员</label>
11
11
  <input type="text" style="width: 60%" class="input_search" v-model="model.f_username" placeholder="使用人员" >
12
12
  </div>
13
- <div class="col-sm-6 form-group">
13
+ <div class="col-sm-6">
14
14
  <label class="font_normal_body">设备号</label>
15
15
  <input type="text" style="width: 60%" class="input_search" v-model="model.f_terminal_number" placeholder="设备号" >
16
16
  </div>
17
- <div class="col-sm-6 form-group">
17
+ <div class="col-sm-6">
18
18
  <label class="font_normal_body">使用公司</label>
19
19
  <right-tree :userid.sync='userid' :source.sync='source' @re-res="getRes"></right-tree>
20
20
  </div>
@@ -4,17 +4,17 @@
4
4
  <criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
5
5
  <div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
6
6
  <div class="row">
7
- <div class="col-sm-3 form-group">
7
+ <div class="col-sm-3">
8
8
  <label class="font_normal_body">使用公司</label>
9
9
  <right-tree :userid.sync='$parent.$parent.userid' :source.sync='$parent.$parent.source' @re-res="$parent.$parent.getRes" > </right-tree>
10
10
  </div>
11
11
 
12
- <div class="col-sm-3 form-group" >
12
+ <div class="col-sm-3" >
13
13
  <label class="font_normal_body">使用人员</label>
14
14
  <input type="text" class="input_search" style="width:60%" v-model="model.f_username"
15
15
  condition="f_username like '%{}%'" placeholder="使用人员">
16
16
  </div>
17
- <div class="col-sm-3 form-group" >
17
+ <div class="col-sm-3" >
18
18
  <label class="font_normal_body">设备号</label>
19
19
  <input type="text" class="input_search" style="width:60%" v-model="model.f_terminal_number"
20
20
  condition="f_terminal_number like '%{}%'" placeholder="设备号">
@@ -41,7 +41,7 @@
41
41
  <td style="text-align:center">{{row.f_username}}</td>
42
42
  <td style="text-align:center">{{row.f_terminal_number}}</td>
43
43
  <td style="text-align:center">
44
- <button class="btn btn-danger" @click.stop="$parent.$parent.$parent.del(row)">删除</button>
44
+ <button class="btn btn-link" @click.stop="$parent.$parent.$parent.del(row)">删除</button>
45
45
  </td>
46
46
  </tr>
47
47
  </template>