system-clients 3.1.90-aode → 3.1.94-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 (37) hide show
  1. package/.gradle/5.5/fileHashes/fileHashes.lock +0 -0
  2. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  3. package/.gradle/buildOutputCleanup/cache.properties +1 -1
  4. package/.npmignore +10 -0
  5. package/build/.npmignore +1 -0
  6. package/build/webpack.base.conf.js +82 -78
  7. package/dist/static/.gitkeep +0 -0
  8. package/dist/static/batchleft.png +0 -0
  9. package/dist/static/batchright.png +0 -0
  10. package/dist/static/bluemainbg.jpg +0 -0
  11. package/dist/static/huangtengbiaozhi.png +0 -0
  12. package/dist/static/login_bg.jpg +0 -0
  13. package/dist/static/login_title.png +0 -0
  14. package/dist/static/login_title1.png +0 -0
  15. package/dist/static/loginbg.jpg +0 -0
  16. package/dist/static/loginlogo.png +0 -0
  17. package/dist/static/main_logo.png +0 -0
  18. package/dist/static/mainbg.jpg +0 -0
  19. package/dist/static/menulogo.png +0 -0
  20. package/dist/static/newmainbg.jpg +0 -0
  21. package/dist/static/psicon.png +0 -0
  22. package/dist/static/singleleft.png +0 -0
  23. package/dist/static/singleright.png +0 -0
  24. package/dist/static/treeopen.png +0 -0
  25. package/dist/static/treeout.png +0 -0
  26. package/dist/static/treeset.png +0 -0
  27. package/dist/static/usericon.png +0 -0
  28. package/dist/static/xinxi.png +0 -0
  29. package/package-lock.json +10507 -0
  30. package/package.json +1 -1
  31. package/src/.npmignore +1 -0
  32. package/src/components/Main.vue +508 -508
  33. package/src/components/server/Login.vue +711 -711
  34. package/src/components/server/RightTree.vue +343 -343
  35. package/src/plugins/GetLoginInfoService.js +5 -5
  36. package/src/styles/less/aofeng/themeOne/systemStyle.less +2650 -2650
  37. /package/static/{logo.png → ewmlogo.png} +0 -0
@@ -1,2 +1,2 @@
1
- #Tue May 11 16:49:27 CST 2021
1
+ #Wed Jul 14 16:55:53 CST 2021
2
2
  gradle.version=5.5
package/.npmignore ADDED
@@ -0,0 +1,10 @@
1
+ src/bootstrap
2
+ .idea/
3
+ .DS_Store
4
+ node_modules/
5
+ dist/static/*.map
6
+ npm-debug.log
7
+ selenium-debug.log
8
+ test/unit/coverage
9
+ test/e2e/reports
10
+ yarn.lock
@@ -0,0 +1 @@
1
+ /dev-server.js
@@ -1,78 +1,82 @@
1
- var path = require('path')
2
- var cssLoaders = require('./css-loaders')
3
- var projectRoot = path.resolve(__dirname, '../')
4
-
5
- module.exports = {
6
- entry: {
7
- app: './src/main.js'
8
- },
9
- output: {
10
- path: path.resolve(__dirname, '../dist/static'),
11
- publicPath: 'static/',
12
- filename: '[name].js'
13
- },
14
- resolve: {
15
- extensions: ['', '.js', '.vue'],
16
- fallback: [path.join(__dirname, '../node_modules')],
17
- alias: {
18
- 'test': path.resolve(__dirname, '../test'),
19
- 'src': path.resolve(__dirname, '../src')
20
- }
21
- },
22
- resolveLoader: {
23
- fallback: [path.join(__dirname, '../node_modules')]
24
- },
25
- module: {
26
- loaders: [
27
- {
28
- test: /\.vue$/,
29
- loader: 'vue'
30
- },
31
- {
32
- test: /\.js$/,
33
- loader: 'babel',
34
- include: [
35
- `${projectRoot}\\src`,
36
- `${projectRoot}\\build`,
37
- `${projectRoot}\\examples`,
38
- `${projectRoot}\\test`,
39
- `${projectRoot}\\node_modules\\vue-client\\src`,
40
- `${projectRoot}\\node_modules\\vue-strap\\src`
41
- ],
42
- options: {
43
- presets: ['es2015']
44
- }
45
- },
46
- {
47
- test: /\.json$/,
48
- loader: 'json'
49
- },
50
- {
51
- test: /\.html$/,
52
- loader: 'vue-html'
53
- },
54
- {
55
- test: /\.less$/,
56
- loader: 'style!css!less'
57
- },
58
- {
59
- test: /\.(png|jpg|gif|svg|woff2?|eot|ttf)(\?.*)?$/,
60
- loader: 'url',
61
- query: {
62
- limit: 10000,
63
- name: '[name].[ext]?[hash:7]'
64
- }
65
- }
66
- ]
67
- },
68
- vue: {
69
- loaders: cssLoaders({
70
- sourceMap: false,
71
- extract: false
72
- })
73
- },
74
- plugins: [],
75
- eslint: {
76
- formatter: require('eslint-friendly-formatter')
77
- }
78
- }
1
+ var path = require('path')
2
+ var cssLoaders = require('./css-loaders')
3
+ var projectRoot = path.resolve(__dirname, '../')
4
+
5
+ module.exports = {
6
+ entry: {
7
+ app: './src/main.js'
8
+ },
9
+ output: {
10
+ path: path.resolve(__dirname, '../dist/static'),
11
+ publicPath: 'static/',
12
+ filename: '[name].js'
13
+ },
14
+ resolve: {
15
+ extensions: ['', '.js', '.vue'],
16
+ fallback: [path.join(__dirname, '../node_modules')],
17
+ alias: {
18
+ 'test': path.resolve(__dirname, '../test'),
19
+ 'src': path.resolve(__dirname, '../src')
20
+ }
21
+ },
22
+ resolveLoader: {
23
+ fallback: [path.join(__dirname, '../node_modules')]
24
+ },
25
+ module: {
26
+ loaders: [
27
+ {
28
+ test: /\.vue$/,
29
+ loader: 'vue'
30
+ },
31
+ {
32
+ test: /\.js$/,
33
+ loader: 'babel',
34
+ include: [
35
+ `${projectRoot}\\src`,
36
+ `${projectRoot}\\build`,
37
+ `${projectRoot}\\examples`,
38
+ `${projectRoot}\\test`,
39
+ `${projectRoot}\\node_modules\\vue-client\\src`,
40
+ `${projectRoot}\\node_modules\\vue-strap\\src`
41
+ ],
42
+ options: {
43
+ presets: ['es2015']
44
+ }
45
+ },
46
+ {
47
+ test: /\.json$/,
48
+ loader: 'json'
49
+ },
50
+ {
51
+ test: /\.css$/,
52
+ loader: 'css'
53
+ },
54
+ {
55
+ test: /\.html$/,
56
+ loader: 'vue-html'
57
+ },
58
+ {
59
+ test: /\.less$/,
60
+ loader: 'style!css!less'
61
+ },
62
+ {
63
+ test: /\.(png|jpg|gif|svg|woff2?|eot|ttf)(\?.*)?$/,
64
+ loader: 'url',
65
+ query: {
66
+ limit: 10000,
67
+ name: '[name].[ext]?[hash:7]'
68
+ }
69
+ }
70
+ ]
71
+ },
72
+ vue: {
73
+ loaders: cssLoaders({
74
+ sourceMap: false,
75
+ extract: false
76
+ })
77
+ },
78
+ plugins: [],
79
+ eslint: {
80
+ formatter: require('eslint-friendly-formatter')
81
+ }
82
+ }
File without changes
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file