system-clients 3.0.46 → 3.0.47-fanxian

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 (100) hide show
  1. package/.babelrc +5 -5
  2. package/.editorconfig +9 -9
  3. package/.eslintrc.js +16 -16
  4. package/.gradle/buildOutputCleanup/cache.properties +2 -2
  5. package/README.md +36 -36
  6. package/SystemClient.iml +11 -11
  7. package/build/css-loaders.js +34 -34
  8. package/build/dev-client.js +8 -8
  9. package/build/example-server.js +80 -80
  10. package/build/release.sh +28 -28
  11. package/build/utils.js +71 -71
  12. package/build/webpack.base.conf.js +75 -75
  13. package/build/webpack.dev.conf.js +31 -31
  14. package/build/webpack.example.conf.js +49 -49
  15. package/build/webpack.prod.conf.js +60 -60
  16. package/build/webpack.test.conf.js +31 -31
  17. package/build.gradle +6 -6
  18. package/config/dev.env.js +6 -6
  19. package/config/index.js +38 -38
  20. package/config/prod.env.js +3 -3
  21. package/config/test.env.js +6 -6
  22. package/doc/Login.md +7 -7
  23. package/examples/ReadCard/App.vue +23 -23
  24. package/examples/ReadCard/index.html +11 -11
  25. package/examples/ReadCard/main.js +12 -12
  26. package/index.html +21 -21
  27. package/package.json +1 -1
  28. package/release.bat +5 -5
  29. package/src/App.vue +24 -24
  30. package/src/LodopFuncs.js +123 -123
  31. package/src/assets/binding.svg +1 -1
  32. package/src/assets/unbind.svg +1 -1
  33. package/src/assets//345/205/254/345/221/212.svg +1 -1
  34. package/src/assets//347/207/203/346/260/224/347/274/264/350/264/271.eps +116 -116
  35. package/src/assets//350/201/224/347/263/273/346/210/221/344/273/254.svg +1 -1
  36. package/src/components/List.vue +51 -51
  37. package/src/components/Main.vue +632 -533
  38. package/src/components/Table.js +74 -74
  39. package/src/components/Util.js +343 -343
  40. package/src/components/equipment/EquipmentManage.vue +65 -65
  41. package/src/components/equipment/PcAdd.vue +105 -105
  42. package/src/components/equipment/PcList.vue +119 -119
  43. package/src/components/equipment/PcManage.vue +60 -60
  44. package/src/components/equipment/PhoneAdd.vue +94 -94
  45. package/src/components/equipment/PhoneList.vue +102 -102
  46. package/src/components/equipment/PhoneManage.vue +60 -60
  47. package/src/components/equipment/PosAdd.vue +137 -137
  48. package/src/components/equipment/PosList.vue +156 -156
  49. package/src/components/equipment/PosManage.vue +67 -67
  50. package/src/components/materialManage/materialData.vue +44 -44
  51. package/src/components/materialManage/materialList.vue +255 -255
  52. package/src/components/parammanage/AlarmInformation.vue +122 -0
  53. package/src/components/parammanage/ParamManage.vue +42 -42
  54. package/src/components/parammanage/ParamManages.vue +43 -43
  55. package/src/components/parammanage/ParamPage.vue +314 -314
  56. package/src/components/parammanage/ParamPages.vue +214 -222
  57. package/src/components/parammanage/SinglePage.vue +237 -235
  58. package/src/components/parammanage/SinglePages.vue +161 -167
  59. package/src/components/server/AddChangeMsg.vue +66 -66
  60. package/src/components/server/ChangeDeclare.vue +45 -45
  61. package/src/components/server/IconTree.vue +26 -26
  62. package/src/components/server/LeftTree.vue +111 -111
  63. package/src/components/server/LoadData.vue +36 -36
  64. package/src/components/server/Login.vue +625 -624
  65. package/src/components/server/Menu.vue +188 -188
  66. package/src/components/server/ModifyPw.vue +125 -106
  67. package/src/components/server/ResSelect.vue +150 -150
  68. package/src/components/server/ResSelectGroup.vue +140 -140
  69. package/src/components/server/RightTree.vue +263 -263
  70. package/src/components/server/RoleSelector.vue +88 -88
  71. package/src/components/server/TestResSelect.vue +1 -1
  72. package/src/components/server/TestResSelectGroup.vue +388 -388
  73. package/src/components/server/TestRightTree.vue +42 -42
  74. package/src/index.js +7 -7
  75. package/src/plugins/GetLoginInfoService.js +509 -513
  76. package/src/plugins/validation.js +7 -7
  77. package/src/project/ProjectPage.vue +24 -24
  78. package/src/project/State.js +17 -17
  79. package/src/stores/AppData.js +38 -38
  80. package/src/system.js +78 -76
  81. package/src/systemphone.js +11 -11
  82. package/src/util/LdapHelper.js +75 -75
  83. package/static/newStyle/alarm.mp3 +0 -0
  84. package/test/e2e/custom-assertions/elementCount.js +26 -26
  85. package/test/e2e/nightwatch.conf.js +40 -40
  86. package/test/e2e/runner.js +30 -30
  87. package/test/e2e/specs/test.js +14 -14
  88. package/test/unit/.eslintrc +5 -5
  89. package/test/unit/index.js +13 -13
  90. package/test/unit/init.js +10 -10
  91. package/test/unit/specs/base64.spec.js +5 -5
  92. package/test/unit/specs/components/parammanage/SinglePage.spec.js +20 -20
  93. package/test/unit/specs/components/server/LeftTree/App.vue +18 -18
  94. package/test/unit/specs/components/server/LoadData.spec.js +24 -24
  95. package/test/unit/specs/components/server/Login.spec.js +61 -61
  96. package/test/unit/specs/components/server/RightTree.spec.js +50 -50
  97. package/test/unit/specs/plugins/GetLoginInfoService.spec.js +55 -55
  98. package/test/unit/test.html +76 -76
  99. package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
  100. package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
@@ -1,67 +1,67 @@
1
- <template>
2
- <div class="flex-row">
3
- <div :class="{'basic-main':!isChange,'binary-left':isChange}">
4
- <pos-list :row="row" @select-changed="selected" style="width:auto;" :f_filialeid.sync="f_filialeids" v-ref:list ></pos-list>
5
- </div>
6
- <div class="binary-right" style="margin-left: 10px; width: 50%;" v-if="isChange">
7
- <pos-add :data="row" :f_filialeids.sync="f_filialeids" v-ref:addbox></pos-add>
8
- </div>
9
- </div>
10
- </template>
11
- <script>
12
-
13
- import PosList from './PosList'
14
- import PosAdd from './PosAdd'
15
-
16
- export default {
17
- title: 'POS终端管理',
18
- components: {
19
- PosList, PosAdd
20
- },
21
- data () {
22
- return {
23
- isChange: false,
24
- row: null,
25
-
26
- f_filialeids: ''
27
- }
28
- },
29
- methods: {
30
- selected (obj) {
31
- this.isChange = true
32
- this.row = obj.val
33
- }
34
- },
35
- events: {
36
- 'search' () {
37
- this.isChange = false
38
- this.row = null
39
- this.$refs.list.$refs.paged.$refs.cri.search()
40
- },
41
- 'research' () {
42
- console.log('重新查询')
43
- this.isChange = false
44
- this.row = null
45
- },
46
- 'refresh' () {
47
- this.isChange = false
48
- this.row = null
49
- this.$refs.list.search()
50
- },
51
- 'error' (name, row, res) {
52
- this.isChange = false
53
- this.row = null
54
- },
55
- 'close' () {
56
- this.isChange = false
57
- this.row = null
58
- this.$refs.list.search()
59
- },
60
- 'add' () {
61
- this.row = null
62
- this.isChange = true
63
- this.$refs.list.$refs.paged.$refs.grid.selectStore.selected = null
64
- }
65
- }
66
- }
67
- </script>
1
+ <template>
2
+ <div class="flex-row">
3
+ <div :class="{'basic-main':!isChange,'binary-left':isChange}">
4
+ <pos-list :row="row" @select-changed="selected" style="width:auto;" :f_filialeid.sync="f_filialeids" v-ref:list ></pos-list>
5
+ </div>
6
+ <div class="binary-right" style="margin-left: 10px; width: 50%;" v-if="isChange">
7
+ <pos-add :data="row" :f_filialeids.sync="f_filialeids" v-ref:addbox></pos-add>
8
+ </div>
9
+ </div>
10
+ </template>
11
+ <script>
12
+
13
+ import PosList from './PosList'
14
+ import PosAdd from './PosAdd'
15
+
16
+ export default {
17
+ title: 'POS终端管理',
18
+ components: {
19
+ PosList, PosAdd
20
+ },
21
+ data () {
22
+ return {
23
+ isChange: false,
24
+ row: null,
25
+
26
+ f_filialeids: ''
27
+ }
28
+ },
29
+ methods: {
30
+ selected (obj) {
31
+ this.isChange = true
32
+ this.row = obj.val
33
+ }
34
+ },
35
+ events: {
36
+ 'search' () {
37
+ this.isChange = false
38
+ this.row = null
39
+ this.$refs.list.$refs.paged.$refs.cri.search()
40
+ },
41
+ 'research' () {
42
+ console.log('重新查询')
43
+ this.isChange = false
44
+ this.row = null
45
+ },
46
+ 'refresh' () {
47
+ this.isChange = false
48
+ this.row = null
49
+ this.$refs.list.search()
50
+ },
51
+ 'error' (name, row, res) {
52
+ this.isChange = false
53
+ this.row = null
54
+ },
55
+ 'close' () {
56
+ this.isChange = false
57
+ this.row = null
58
+ this.$refs.list.search()
59
+ },
60
+ 'add' () {
61
+ this.row = null
62
+ this.isChange = true
63
+ this.$refs.list.$refs.paged.$refs.grid.selectStore.selected = null
64
+ }
65
+ }
66
+ }
67
+ </script>
@@ -1,44 +1,44 @@
1
- <template>
2
- <div><button @click="showMaterialList()" class="btn btn-success "> 显示数据字典</button> {{isShow}}</div>
3
- <!-- 材料列表-->
4
- <modal :show.sync="isShow" width="900px" >
5
- <header slot="modal-header" class="modal-header" style="height: 60px">
6
- <button type="button" class="close" @click="showMaterialList()"><span>关闭&times;</span></button>
7
- <h4 class="modal-title" align="center">材料列表</h4>
8
- </header>
9
- <!--材料列表-->
10
- <article slot="modal-body" class="modal-body" style="height: 600px">
11
- <div class="span " v-show="isShow" style="height: 560px">
12
- <material-data-list ></material-data-list>
13
- </div>
14
- </article>
15
- <footer slot="modal-footer" class="modal-footer" style="height: 70px">
16
- <button type="button" class="btn btn-info btn-ln fr" @click='showMaterialList()'>关闭</button>
17
- </footer>
18
- </modal>
19
- </template>
20
-
21
- <script>
22
- export default {
23
- title:'数据字典',
24
- name: "materialData.vue",
25
-
26
- data(){
27
- return{
28
-
29
- //控制modal
30
- isShow : false,
31
- }
32
- },
33
-
34
- methods:{
35
- showMaterialList(){
36
- this.isShow = !this.isShow
37
- }
38
- }
39
- }
40
- </script>
41
-
42
- <style scoped>
43
-
44
- </style>
1
+ <template>
2
+ <div><button @click="showMaterialList()" class="btn btn-success "> 显示数据字典</button> {{isShow}}</div>
3
+ <!-- 材料列表-->
4
+ <modal :show.sync="isShow" width="900px" >
5
+ <header slot="modal-header" class="modal-header" style="height: 60px">
6
+ <button type="button" class="close" @click="showMaterialList()"><span>关闭&times;</span></button>
7
+ <h4 class="modal-title" align="center">材料列表</h4>
8
+ </header>
9
+ <!--材料列表-->
10
+ <article slot="modal-body" class="modal-body" style="height: 600px">
11
+ <div class="span " v-show="isShow" style="height: 560px">
12
+ <material-data-list ></material-data-list>
13
+ </div>
14
+ </article>
15
+ <footer slot="modal-footer" class="modal-footer" style="height: 70px">
16
+ <button type="button" class="btn btn-info btn-ln fr" @click='showMaterialList()'>关闭</button>
17
+ </footer>
18
+ </modal>
19
+ </template>
20
+
21
+ <script>
22
+ export default {
23
+ title:'数据字典',
24
+ name: "materialData.vue",
25
+
26
+ data(){
27
+ return{
28
+
29
+ //控制modal
30
+ isShow : false,
31
+ }
32
+ },
33
+
34
+ methods:{
35
+ showMaterialList(){
36
+ this.isShow = !this.isShow
37
+ }
38
+ }
39
+ }
40
+ </script>
41
+
42
+ <style scoped>
43
+
44
+ </style>