system-clients 3.0.47-fanxian → 3.0.48-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 (101) 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/CHANGELOG.md +51 -51
  6. package/README.md +36 -36
  7. package/SystemClient.iml +11 -11
  8. package/build/css-loaders.js +34 -34
  9. package/build/dev-client.js +8 -8
  10. package/build/example-server.js +80 -80
  11. package/build/release.sh +28 -28
  12. package/build/utils.js +71 -71
  13. package/build/webpack.base.conf.js +75 -75
  14. package/build/webpack.dev.conf.js +31 -31
  15. package/build/webpack.example.conf.js +49 -49
  16. package/build/webpack.prod.conf.js +60 -60
  17. package/build/webpack.test.conf.js +31 -31
  18. package/build.gradle +6 -6
  19. package/config/dev.env.js +6 -6
  20. package/config/index.js +38 -38
  21. package/config/prod.env.js +3 -3
  22. package/config/test.env.js +6 -6
  23. package/doc/Login.md +7 -7
  24. package/examples/ReadCard/App.vue +23 -23
  25. package/examples/ReadCard/index.html +11 -11
  26. package/examples/ReadCard/main.js +12 -12
  27. package/index.html +21 -21
  28. package/package.json +102 -102
  29. package/release.bat +5 -5
  30. package/src/App.vue +24 -24
  31. package/src/LodopFuncs.js +123 -123
  32. package/src/assets/binding.svg +1 -1
  33. package/src/assets/unbind.svg +1 -1
  34. package/src/assets//345/205/254/345/221/212.svg +1 -1
  35. package/src/assets//347/207/203/346/260/224/347/274/264/350/264/271.eps +116 -116
  36. package/src/assets//350/201/224/347/263/273/346/210/221/344/273/254.svg +1 -1
  37. package/src/components/List.vue +51 -51
  38. package/src/components/Main.vue +632 -632
  39. package/src/components/Table.js +74 -74
  40. package/src/components/Util.js +343 -343
  41. package/src/components/equipment/EquipmentManage.vue +65 -65
  42. package/src/components/equipment/PcAdd.vue +105 -105
  43. package/src/components/equipment/PcList.vue +119 -119
  44. package/src/components/equipment/PcManage.vue +60 -60
  45. package/src/components/equipment/PhoneAdd.vue +94 -94
  46. package/src/components/equipment/PhoneList.vue +102 -102
  47. package/src/components/equipment/PhoneManage.vue +60 -60
  48. package/src/components/equipment/PosAdd.vue +137 -137
  49. package/src/components/equipment/PosList.vue +156 -156
  50. package/src/components/equipment/PosManage.vue +67 -67
  51. package/src/components/materialManage/materialData.vue +44 -44
  52. package/src/components/materialManage/materialList.vue +255 -255
  53. package/src/components/parammanage/AlarmInformation.vue +124 -122
  54. package/src/components/parammanage/ParamManage.vue +42 -42
  55. package/src/components/parammanage/ParamManages.vue +43 -43
  56. package/src/components/parammanage/ParamPage.vue +314 -314
  57. package/src/components/parammanage/ParamPages.vue +214 -214
  58. package/src/components/parammanage/SinglePage.vue +237 -237
  59. package/src/components/parammanage/SinglePages.vue +161 -161
  60. package/src/components/server/AddChangeMsg.vue +66 -66
  61. package/src/components/server/ChangeDeclare.vue +45 -45
  62. package/src/components/server/IconTree.vue +26 -26
  63. package/src/components/server/LeftTree.vue +111 -111
  64. package/src/components/server/LoadData.vue +36 -36
  65. package/src/components/server/Login.vue +625 -625
  66. package/src/components/server/Menu.vue +188 -188
  67. package/src/components/server/ModifyPw.vue +125 -125
  68. package/src/components/server/ResSelect.vue +150 -150
  69. package/src/components/server/ResSelectGroup.vue +140 -140
  70. package/src/components/server/RightTree.vue +263 -263
  71. package/src/components/server/RoleSelector.vue +88 -88
  72. package/src/components/server/TestResSelect.vue +58 -58
  73. package/src/components/server/TestResSelectGroup.vue +388 -388
  74. package/src/components/server/TestRightTree.vue +42 -42
  75. package/src/index.js +7 -7
  76. package/src/plugins/GetLoginInfoService.js +509 -509
  77. package/src/plugins/validation.js +7 -7
  78. package/src/project/ProjectPage.vue +24 -24
  79. package/src/project/State.js +17 -17
  80. package/src/stores/AppData.js +38 -38
  81. package/src/system.js +78 -78
  82. package/src/systemphone.js +11 -11
  83. package/src/util/LdapHelper.js +75 -75
  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/karma.conf.js +49 -49
  92. package/test/unit/specs/base64.spec.js +5 -5
  93. package/test/unit/specs/components/parammanage/ParamPage.spec.js +20 -20
  94. package/test/unit/specs/components/parammanage/SinglePage.spec.js +20 -20
  95. package/test/unit/specs/components/server/LeftTree/App.vue +18 -18
  96. package/test/unit/specs/components/server/LeftTree/LeftTree.spec.js +22 -22
  97. package/test/unit/specs/components/server/LoadData.spec.js +24 -24
  98. package/test/unit/specs/components/server/Login.spec.js +61 -61
  99. package/test/unit/specs/components/server/RightTree.spec.js +50 -50
  100. package/test/unit/specs/plugins/GetLoginInfoService.spec.js +55 -55
  101. package/test/unit/test.html +76 -76
package/config/index.js CHANGED
@@ -1,38 +1,38 @@
1
- // see http://vuejs-templates.github.io/webpack for documentation.
2
- var path = require('path')
3
-
4
- module.exports = {
5
- build: {
6
- env: require('./prod.env'),
7
- index: path.resolve(__dirname, '../dist/index.html'),
8
- assetsRoot: path.resolve(__dirname, '../dist'),
9
- assetsSubDirectory: 'static',
10
- assetsPublicPath: '/',
11
- productionSourceMap: true,
12
- // Gzip off by default as many popular static hosts such as
13
- // Surge or Netlify already gzip all static assets for you.
14
- // Before setting to `true`, make sure to:
15
- // npm install --save-dev compression-webpack-plugin
16
- productionGzip: false,
17
- productionGzipExtensions: ['js', 'css'],
18
- // Run the build command with an extra argument to
19
- // View the bundle analyzer report after build finishes:
20
- // `npm run build --report`
21
- // Set to `true` or `false` to always turn it on or off
22
- bundleAnalyzerReport: process.env.npm_config_report
23
- },
24
- dev: {
25
- env: require('./dev.env'),
26
- port: 8080,
27
- autoOpenBrowser: true,
28
- assetsSubDirectory: 'static',
29
- assetsPublicPath: '/',
30
- proxyTable: {},
31
- // CSS Sourcemaps off by default because relative paths are "buggy"
32
- // with this option, according to the CSS-Loader README
33
- // (https://github.com/webpack/css-loader#sourcemaps)
34
- // In our experience, they generally work as expected,
35
- // just be aware of this issue when enabling this option.
36
- cssSourceMap: false
37
- }
38
- }
1
+ // see http://vuejs-templates.github.io/webpack for documentation.
2
+ var path = require('path')
3
+
4
+ module.exports = {
5
+ build: {
6
+ env: require('./prod.env'),
7
+ index: path.resolve(__dirname, '../dist/index.html'),
8
+ assetsRoot: path.resolve(__dirname, '../dist'),
9
+ assetsSubDirectory: 'static',
10
+ assetsPublicPath: '/',
11
+ productionSourceMap: true,
12
+ // Gzip off by default as many popular static hosts such as
13
+ // Surge or Netlify already gzip all static assets for you.
14
+ // Before setting to `true`, make sure to:
15
+ // npm install --save-dev compression-webpack-plugin
16
+ productionGzip: false,
17
+ productionGzipExtensions: ['js', 'css'],
18
+ // Run the build command with an extra argument to
19
+ // View the bundle analyzer report after build finishes:
20
+ // `npm run build --report`
21
+ // Set to `true` or `false` to always turn it on or off
22
+ bundleAnalyzerReport: process.env.npm_config_report
23
+ },
24
+ dev: {
25
+ env: require('./dev.env'),
26
+ port: 8080,
27
+ autoOpenBrowser: true,
28
+ assetsSubDirectory: 'static',
29
+ assetsPublicPath: '/',
30
+ proxyTable: {},
31
+ // CSS Sourcemaps off by default because relative paths are "buggy"
32
+ // with this option, according to the CSS-Loader README
33
+ // (https://github.com/webpack/css-loader#sourcemaps)
34
+ // In our experience, they generally work as expected,
35
+ // just be aware of this issue when enabling this option.
36
+ cssSourceMap: false
37
+ }
38
+ }
@@ -1,3 +1,3 @@
1
- module.exports = {
2
- NODE_ENV: '"production"'
3
- }
1
+ module.exports = {
2
+ NODE_ENV: '"production"'
3
+ }
@@ -1,6 +1,6 @@
1
- var merge = require('webpack-merge')
2
- var devEnv = require('./dev.env')
3
-
4
- module.exports = merge(devEnv, {
5
- NODE_ENV: '"testing"'
6
- })
1
+ var merge = require('webpack-merge')
2
+ var devEnv = require('./dev.env')
3
+
4
+ module.exports = merge(devEnv, {
5
+ NODE_ENV: '"testing"'
6
+ })
package/doc/Login.md CHANGED
@@ -1,7 +1,7 @@
1
- # Login
2
-
3
- PC端登录组件
4
-
5
- ## 登录后处理
6
-
7
- - 把登录人员id存放在cookie的loginId中
1
+ # Login
2
+
3
+ PC端登录组件
4
+
5
+ ## 登录后处理
6
+
7
+ - 把登录人员id存放在cookie的loginId中
@@ -1,23 +1,23 @@
1
- <template>
2
- <div class="auto">
3
- <read-card></read-card>
4
- <init-card></init-card>
5
- <sell-gas></sell-gas>
6
- </div>
7
- </template>
8
-
9
- <script>
10
- import ReadCard from '../../src/components/CardServer/ReadCard'
11
- import SellGas from '../../src/components/CardServer/SellGas'
12
- import InitCard from '../../src/components/CardServer/InitCard'
13
- export default {
14
- data () {
15
- return {
16
- // test: '',
17
- // test2:'',
18
- // t: 2
19
- }
20
- },
21
- components: { ReadCard, SellGas, InitCard }
22
- }
23
- </script>
1
+ <template>
2
+ <div class="auto">
3
+ <read-card></read-card>
4
+ <init-card></init-card>
5
+ <sell-gas></sell-gas>
6
+ </div>
7
+ </template>
8
+
9
+ <script>
10
+ import ReadCard from '../../src/components/CardServer/ReadCard'
11
+ import SellGas from '../../src/components/CardServer/SellGas'
12
+ import InitCard from '../../src/components/CardServer/InitCard'
13
+ export default {
14
+ data () {
15
+ return {
16
+ // test: '',
17
+ // test2:'',
18
+ // t: 2
19
+ }
20
+ },
21
+ components: { ReadCard, SellGas, InitCard }
22
+ }
23
+ </script>
@@ -1,11 +1,11 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8">
5
- <title>ReadCard</title>
6
- </head>
7
- <body>
8
- <app></app>
9
- <script src="../ReadCardApp.js"></script>
10
- </body>
11
- </html>
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>ReadCard</title>
6
+ </head>
7
+ <body>
8
+ <app></app>
9
+ <script src="../ReadCardApp.js"></script>
10
+ </body>
11
+ </html>
@@ -1,12 +1,12 @@
1
- import Vue from 'vue'
2
- import App from './App'
3
- import { all } from 'vue-client'
4
-
5
- all()
6
- require('../../src/bootstrap/less/bootstrap.less')
7
-
8
- /* eslint-disable no-new */
9
- new Vue({
10
- el: 'body',
11
- components: { App }
12
- })
1
+ import Vue from 'vue'
2
+ import App from './App'
3
+ import { all } from 'vue-client'
4
+
5
+ all()
6
+ require('../../src/bootstrap/less/bootstrap.less')
7
+
8
+ /* eslint-disable no-new */
9
+ new Vue({
10
+ el: 'body',
11
+ components: { App }
12
+ })
package/index.html CHANGED
@@ -1,21 +1,21 @@
1
- <!DOCTYPE html>
2
- <html lang="zh-CN">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
6
- <META HTTP-EQUIV="pragma" CONTENT="no-cache">
7
- <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
8
- <META HTTP-EQUIV="expires" CONTENT="0">
9
- <title>奥枫信息系统</title>
10
- <style media="screen">
11
- /*url(./static/newmainbg.jpg)*/
12
- body{width: 100%;background:#7f8eaf no-repeat center bottom; background-size: cover;}
13
- body .loginbg{ width:100%; height:100%; background:url(./static/loginbg.jpg) no-repeat center top;}
14
- </style>
15
- </head>
16
- <body id="bodymain" class="themeOne">
17
- <!-- <widget></widget> -->
18
- <app></app>
19
- <!-- built files will be auto injected -->
20
- </body>
21
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
6
+ <META HTTP-EQUIV="pragma" CONTENT="no-cache">
7
+ <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
8
+ <META HTTP-EQUIV="expires" CONTENT="0">
9
+ <title>奥枫信息系统</title>
10
+ <style media="screen">
11
+ /*url(./static/newmainbg.jpg)*/
12
+ body{width: 100%;background:#7f8eaf no-repeat center bottom; background-size: cover;}
13
+ body .loginbg{ width:100%; height:100%; background:url(./static/loginbg.jpg) no-repeat center top;}
14
+ </style>
15
+ </head>
16
+ <body id="bodymain" class="themeOne">
17
+ <!-- <widget></widget> -->
18
+ <app></app>
19
+ <!-- built files will be auto injected -->
20
+ </body>
21
+ </html>
package/package.json CHANGED
@@ -1,102 +1,102 @@
1
- {
2
- "name": "system-clients",
3
- "version": "3.0.47-fanxian",
4
- "description": "系统基础框架",
5
- "main": "src/index.js",
6
- "directories": {
7
- "example": "examples",
8
- "test": "test"
9
- },
10
- "scripts": {
11
- "example": "node build/example-server.js",
12
- "dev": "node build/dev-server.js",
13
- "lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
14
- "build": "rimraf dist && mkdirp dist && ncp static dist/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prod.conf.js",
15
- "e2e": "node test/e2e/runner.js",
16
- "unit": "karma start test/unit/karma.conf.js",
17
- "release": "npm set registry http://registry.npmjs.org && npm publish && npm set registry http://registry.npm.taobao.org"
18
- },
19
- "dependencies": {
20
- "base64-js": "^1.3.0",
21
- "js-base64": "^2.4.9",
22
- "jsencrypt": "^3.0.0-rc.1",
23
- "less": "^2.7.1",
24
- "less-loader": "^2.2.3",
25
- "src": "^1.1.2",
26
- "vue": "^1.0.17"
27
- },
28
- "devDependencies": {
29
- "babel-core": "^6.0.0",
30
- "babel-loader": "^6.0.0",
31
- "babel-plugin-transform-runtime": "^6.0.0",
32
- "babel-preset-es2015": "^6.0.0",
33
- "babel-preset-stage-2": "^6.0.0",
34
- "chai": "^3.5.0",
35
- "connect-history-api-fallback": "^1.1.0",
36
- "cross-env": "^1.0.7",
37
- "cross-spawn": "^2.1.5",
38
- "css-loader": "^0.23.0",
39
- "eslint": "^2.0.0",
40
- "eslint-config-standard": "^5.1.0",
41
- "eslint-friendly-formatter": "^1.2.2",
42
- "eslint-loader": "^1.3.0",
43
- "eslint-plugin-html": "^1.3.0",
44
- "eslint-plugin-promise": "^1.0.8",
45
- "eslint-plugin-standard": "^1.3.2",
46
- "eslint-plugin-vue": "^0.1.1",
47
- "eventsource-polyfill": "^0.9.6",
48
- "express": "^4.13.3",
49
- "extract-text-webpack-plugin": "^1.0.1",
50
- "file-loader": "^0.8.4",
51
- "function-bind": "^1.0.2",
52
- "html-webpack-plugin": "^2.8.1",
53
- "http-proxy-middleware": "^0.11.0",
54
- "inject-loader": "^2.0.1",
55
- "isparta-loader": "^2.0.0",
56
- "jasmine-core": "^2.4.1",
57
- "jquery": "^3.3.1",
58
- "json-loader": "^0.5.4",
59
- "karma": "^1.4.1",
60
- "karma-chrome-launcher": "^2.2.0",
61
- "karma-coverage": "^1.1.1",
62
- "karma-mocha": "^1.3.0",
63
- "karma-sinon-chai": "^1.3.1",
64
- "karma-sourcemap-loader": "^0.3.7",
65
- "karma-spec-reporter": "0.0.31",
66
- "karma-webpack": "^2.0.2",
67
- "manage-client": "^1.4.20",
68
- "mkdirp": "^0.5.1",
69
- "mocha": "^3.2.0",
70
- "ncp": "^2.0.0",
71
- "nightwatch": "^0.8.18",
72
- "rimraf": "^2.5.0",
73
- "selenium-server": "2.52.0",
74
- "sinon": "^2.1.0",
75
- "sinon-chai": "^2.8.0",
76
- "style": "0.0.3",
77
- "style-loader": "^0.20.3",
78
- "url-loader": "^0.5.7",
79
- "vue-client": "1.21.60",
80
- "vue-hot-reload-api": "^1.2.0",
81
- "vue-html-loader": "^1.0.0",
82
- "vue-loader": "^8.2.1",
83
- "vue-resource": "^1.5.0",
84
- "vue-router": "^0.7.13",
85
- "vue-strap": "^1.0.9",
86
- "vue-style-loader": "^1.0.0",
87
- "vue-validator": "^3.0.0-alpha.2",
88
- "webpack": "^1.12.2",
89
- "webpack-dev-middleware": "^1.4.0",
90
- "webpack-hot-middleware": "^2.6.0",
91
- "webpack-merge": "^0.8.3"
92
- },
93
- "repository": {
94
- "type": "git",
95
- "url": "https://gitee.com/aotu/System"
96
- },
97
- "keywords": [
98
- "system_clients"
99
- ],
100
- "author": "杨文宇",
101
- "license": "ISC"
102
- }
1
+ {
2
+ "name": "system-clients",
3
+ "version": "3.0.48-fanxian",
4
+ "description": "系统基础框架",
5
+ "main": "src/index.js",
6
+ "directories": {
7
+ "example": "examples",
8
+ "test": "test"
9
+ },
10
+ "scripts": {
11
+ "example": "node build/example-server.js",
12
+ "dev": "node build/dev-server.js",
13
+ "lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
14
+ "build": "rimraf dist && mkdirp dist && ncp static dist/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prod.conf.js",
15
+ "e2e": "node test/e2e/runner.js",
16
+ "unit": "karma start test/unit/karma.conf.js",
17
+ "release": "npm set registry http://registry.npmjs.org && npm publish && npm set registry http://registry.npm.taobao.org"
18
+ },
19
+ "dependencies": {
20
+ "base64-js": "^1.3.0",
21
+ "js-base64": "^2.4.9",
22
+ "jsencrypt": "^3.0.0-rc.1",
23
+ "less": "^2.7.1",
24
+ "less-loader": "^2.2.3",
25
+ "src": "^1.1.2",
26
+ "vue": "^1.0.17"
27
+ },
28
+ "devDependencies": {
29
+ "babel-core": "^6.0.0",
30
+ "babel-loader": "^6.0.0",
31
+ "babel-plugin-transform-runtime": "^6.0.0",
32
+ "babel-preset-es2015": "^6.0.0",
33
+ "babel-preset-stage-2": "^6.0.0",
34
+ "chai": "^3.5.0",
35
+ "connect-history-api-fallback": "^1.1.0",
36
+ "cross-env": "^1.0.7",
37
+ "cross-spawn": "^2.1.5",
38
+ "css-loader": "^0.23.0",
39
+ "eslint": "^2.0.0",
40
+ "eslint-config-standard": "^5.1.0",
41
+ "eslint-friendly-formatter": "^1.2.2",
42
+ "eslint-loader": "^1.3.0",
43
+ "eslint-plugin-html": "^1.3.0",
44
+ "eslint-plugin-promise": "^1.0.8",
45
+ "eslint-plugin-standard": "^1.3.2",
46
+ "eslint-plugin-vue": "^0.1.1",
47
+ "eventsource-polyfill": "^0.9.6",
48
+ "express": "^4.13.3",
49
+ "extract-text-webpack-plugin": "^1.0.1",
50
+ "file-loader": "^0.8.4",
51
+ "function-bind": "^1.0.2",
52
+ "html-webpack-plugin": "^2.8.1",
53
+ "http-proxy-middleware": "^0.11.0",
54
+ "inject-loader": "^2.0.1",
55
+ "isparta-loader": "^2.0.0",
56
+ "jasmine-core": "^2.4.1",
57
+ "jquery": "^3.3.1",
58
+ "json-loader": "^0.5.4",
59
+ "karma": "^1.4.1",
60
+ "karma-chrome-launcher": "^2.2.0",
61
+ "karma-coverage": "^1.1.1",
62
+ "karma-mocha": "^1.3.0",
63
+ "karma-sinon-chai": "^1.3.1",
64
+ "karma-sourcemap-loader": "^0.3.7",
65
+ "karma-spec-reporter": "0.0.31",
66
+ "karma-webpack": "^2.0.2",
67
+ "manage-client": "^1.4.20",
68
+ "mkdirp": "^0.5.1",
69
+ "mocha": "^3.2.0",
70
+ "ncp": "^2.0.0",
71
+ "nightwatch": "^0.8.18",
72
+ "rimraf": "^2.5.0",
73
+ "selenium-server": "2.52.0",
74
+ "sinon": "^2.1.0",
75
+ "sinon-chai": "^2.8.0",
76
+ "style": "0.0.3",
77
+ "style-loader": "^0.20.3",
78
+ "url-loader": "^0.5.7",
79
+ "vue-client": "1.21.60",
80
+ "vue-hot-reload-api": "^1.2.0",
81
+ "vue-html-loader": "^1.0.0",
82
+ "vue-loader": "^8.2.1",
83
+ "vue-resource": "^1.5.0",
84
+ "vue-router": "^0.7.13",
85
+ "vue-strap": "^1.0.9",
86
+ "vue-style-loader": "^1.0.0",
87
+ "vue-validator": "^3.0.0-alpha.2",
88
+ "webpack": "^1.12.2",
89
+ "webpack-dev-middleware": "^1.4.0",
90
+ "webpack-hot-middleware": "^2.6.0",
91
+ "webpack-merge": "^0.8.3"
92
+ },
93
+ "repository": {
94
+ "type": "git",
95
+ "url": "https://gitee.com/aotu/System"
96
+ },
97
+ "keywords": [
98
+ "system_clients"
99
+ ],
100
+ "author": "杨文宇",
101
+ "license": "ISC"
102
+ }
package/release.bat CHANGED
@@ -1,6 +1,6 @@
1
- git add -A
2
- git commit -m "[build] %1"
3
- git tag -a V%1 -m "Release version %1"
4
- git push origin --tags
5
- git push
1
+ git add -A
2
+ git commit -m "[build] %1"
3
+ git tag -a V%1 -m "Release version %1"
4
+ git push origin --tags
5
+ git push
6
6
  pause
package/src/App.vue CHANGED
@@ -1,24 +1,24 @@
1
- <template>
2
- <app-base class="bg">
3
- <div class='flex'>
4
- <article>
5
- <!--<route :comp="{name: 'check-model'}"></route>-->
6
- <!--<route :comp="{name: 'vender-management'}"></route>-->
7
- <route :comp="{name: 'login'}"></route>
8
- <!-- <route :comp="{name: 'load-data'}"></route> -->
9
- <!-- <route :comp="{name: 'load-params', props: {componentName: 'login'}}"></route> -->
10
- <!-- <route :comp="{name: 'load-params', props: {dataUrl: ['rs/sql/getMeterBrand','rs/sql/getPriceType','rs/sql/getMeterStyle'], componentName: 'login'}}"></route> -->
11
- </article>
12
- </div>
13
- </app-base>
14
- </template>
15
-
16
- <script>
17
- // import cardListen from './plugins/CardListen'
18
-
19
- export default {
20
- // ready () {
21
- // cardListen.startListen()
22
- // }
23
- }
24
- </script>
1
+ <template>
2
+ <app-base class="bg">
3
+ <div class='flex'>
4
+ <article>
5
+ <!--<route :comp="{name: 'check-model'}"></route>-->
6
+ <!--<route :comp="{name: 'vender-management'}"></route>-->
7
+ <route :comp="{name: 'login'}"></route>
8
+ <!-- <route :comp="{name: 'load-data'}"></route> -->
9
+ <!-- <route :comp="{name: 'load-params', props: {componentName: 'login'}}"></route> -->
10
+ <!-- <route :comp="{name: 'load-params', props: {dataUrl: ['rs/sql/getMeterBrand','rs/sql/getPriceType','rs/sql/getMeterStyle'], componentName: 'login'}}"></route> -->
11
+ </article>
12
+ </div>
13
+ </app-base>
14
+ </template>
15
+
16
+ <script>
17
+ // import cardListen from './plugins/CardListen'
18
+
19
+ export default {
20
+ // ready () {
21
+ // cardListen.startListen()
22
+ // }
23
+ }
24
+ </script>