system-clients 3.2.1-24 → 3.2.1-27
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/.eslintrc.js +16 -16
- package/build/webpack.base.conf.js +85 -85
- package/package.json +1 -1
- package/src/App.vue +24 -24
- package/src/components/Main.vue +771 -645
- package/src/components/TabButton.vue +201 -201
- package/src/components/addressManage/AddressCascadingMenu.vue +145 -0
- package/src/components/equipment/EquipmentManage.vue +65 -65
- package/src/components/equipment/PhoneAdd.vue +25 -12
- package/src/components/equipment/PhoneList.vue +30 -20
- package/src/components/equipment/PosAdd.vue +323 -323
- package/src/components/equipment/PosList.vue +294 -294
- package/src/components/equipment/PosManage.vue +138 -138
- package/src/components/equipment/PosManageBoth.vue +125 -125
- package/src/components/equipment/PosParamAdd.vue +236 -236
- package/src/components/equipment/PosParamList.vue +121 -121
- package/src/components/equipment/PosParamManage.vue +51 -51
- package/src/components/server/LoadData.vue +55 -55
- package/src/components/server/Login.vue +835 -828
- package/src/filiale/rizhao/LeftTree.vue +111 -111
- package/src/filiale/rizhao/Login.vue +10 -11
- package/src/filiale/rizhao/Main.vue +606 -606
- package/src/filiale/rizhao/system.js +14 -14
- package/src/styles/less/aofeng/themeOne/systemStyle.less +2650 -2650
- package/src/system.js +109 -109
- package/yarn-error.log +128 -128
- package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
- package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
package/.eslintrc.js
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
// module.exports = {
|
2
|
-
// root: true,
|
3
|
-
// // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
|
4
|
-
// extends: 'standard',
|
5
|
-
// // required to lint *.vue files
|
6
|
-
// plugins: [
|
7
|
-
// 'eslint-plugin-html'
|
8
|
-
// ],
|
9
|
-
// // add your custom rules here
|
10
|
-
// 'rules': {
|
11
|
-
// // allow paren-less arrow functions
|
12
|
-
// 'arrow-parens': 0,
|
13
|
-
// // allow debugger during development
|
14
|
-
// 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
|
15
|
-
// }
|
16
|
-
// }
|
1
|
+
// module.exports = {
|
2
|
+
// root: true,
|
3
|
+
// // https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
|
4
|
+
// extends: 'standard',
|
5
|
+
// // required to lint *.vue files
|
6
|
+
// plugins: [
|
7
|
+
// 'eslint-plugin-html'
|
8
|
+
// ],
|
9
|
+
// // add your custom rules here
|
10
|
+
// 'rules': {
|
11
|
+
// // allow paren-less arrow functions
|
12
|
+
// 'arrow-parens': 0,
|
13
|
+
// // allow debugger during development
|
14
|
+
// 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
|
15
|
+
// }
|
16
|
+
// }
|
@@ -1,85 +1,85 @@
|
|
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/mergeUser'),
|
11
|
-
publicPath: 'mergeUser/',
|
12
|
-
filename: '[name].js'
|
13
|
-
},
|
14
|
-
resolve: {
|
15
|
-
extensions: ['', '.js', '.vue'],
|
16
|
-
fallback: [path.join(__dirname, '../node_modules')],
|
17
|
-
alias: {
|
18
|
-
'src': path.resolve(__dirname, '../src'),
|
19
|
-
'test': path.resolve(__dirname, '../test')
|
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
|
-
/src/,
|
36
|
-
/build/,
|
37
|
-
/examples/,
|
38
|
-
/test/,
|
39
|
-
/node_modules\/vue-client\/src/,
|
40
|
-
/node_modules\/vue-strap\/src/,
|
41
|
-
/node_modules\/system-clients\/src/,
|
42
|
-
/node_modules\/ldap-clients\/src/,
|
43
|
-
/node_modules\/address-client\/src/
|
44
|
-
],
|
45
|
-
options: {
|
46
|
-
presets: ['es2015']
|
47
|
-
}
|
48
|
-
},
|
49
|
-
{
|
50
|
-
test: /\.json$/,
|
51
|
-
loader: 'json'
|
52
|
-
},
|
53
|
-
{
|
54
|
-
test: /\.html$/,
|
55
|
-
loader: 'vue-html'
|
56
|
-
},
|
57
|
-
{
|
58
|
-
test: /\.less$/,
|
59
|
-
loader: 'style!css!less'
|
60
|
-
},
|
61
|
-
{
|
62
|
-
test: /\.css$/,
|
63
|
-
loader: 'style!css'
|
64
|
-
},
|
65
|
-
{
|
66
|
-
test: /\.(png|jpg|gif|svg|woff2?|eot|ttf)(\?.*)?$/,
|
67
|
-
loader: 'url',
|
68
|
-
query: {
|
69
|
-
limit: 10000,
|
70
|
-
name: '[name].[ext]?[hash:7]'
|
71
|
-
}
|
72
|
-
}
|
73
|
-
]
|
74
|
-
},
|
75
|
-
vue: {
|
76
|
-
loaders: cssLoaders({
|
77
|
-
sourceMap: false,
|
78
|
-
extract: false
|
79
|
-
})
|
80
|
-
},
|
81
|
-
plugins: [],
|
82
|
-
eslint: {
|
83
|
-
formatter: require('eslint-friendly-formatter')
|
84
|
-
}
|
85
|
-
}
|
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/mergeUser'),
|
11
|
+
publicPath: 'mergeUser/',
|
12
|
+
filename: '[name].js'
|
13
|
+
},
|
14
|
+
resolve: {
|
15
|
+
extensions: ['', '.js', '.vue'],
|
16
|
+
fallback: [path.join(__dirname, '../node_modules')],
|
17
|
+
alias: {
|
18
|
+
'src': path.resolve(__dirname, '../src'),
|
19
|
+
'test': path.resolve(__dirname, '../test')
|
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
|
+
/src/,
|
36
|
+
/build/,
|
37
|
+
/examples/,
|
38
|
+
/test/,
|
39
|
+
/node_modules\/vue-client\/src/,
|
40
|
+
/node_modules\/vue-strap\/src/,
|
41
|
+
/node_modules\/system-clients\/src/,
|
42
|
+
/node_modules\/ldap-clients\/src/,
|
43
|
+
/node_modules\/address-client\/src/
|
44
|
+
],
|
45
|
+
options: {
|
46
|
+
presets: ['es2015']
|
47
|
+
}
|
48
|
+
},
|
49
|
+
{
|
50
|
+
test: /\.json$/,
|
51
|
+
loader: 'json'
|
52
|
+
},
|
53
|
+
{
|
54
|
+
test: /\.html$/,
|
55
|
+
loader: 'vue-html'
|
56
|
+
},
|
57
|
+
{
|
58
|
+
test: /\.less$/,
|
59
|
+
loader: 'style!css!less'
|
60
|
+
},
|
61
|
+
{
|
62
|
+
test: /\.css$/,
|
63
|
+
loader: 'style!css'
|
64
|
+
},
|
65
|
+
{
|
66
|
+
test: /\.(png|jpg|gif|svg|woff2?|eot|ttf)(\?.*)?$/,
|
67
|
+
loader: 'url',
|
68
|
+
query: {
|
69
|
+
limit: 10000,
|
70
|
+
name: '[name].[ext]?[hash:7]'
|
71
|
+
}
|
72
|
+
}
|
73
|
+
]
|
74
|
+
},
|
75
|
+
vue: {
|
76
|
+
loaders: cssLoaders({
|
77
|
+
sourceMap: false,
|
78
|
+
extract: false
|
79
|
+
})
|
80
|
+
},
|
81
|
+
plugins: [],
|
82
|
+
eslint: {
|
83
|
+
formatter: require('eslint-friendly-formatter')
|
84
|
+
}
|
85
|
+
}
|
package/package.json
CHANGED
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>
|