system-phone 1.2.84 → 1.2.85-test2
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/.npmignore +9 -0
- package/SystemPhone.iml +9 -0
- package/build/dev-server.js +20 -4
- package/build/webpack.base.conf.js +82 -78
- package/package-lock.json +10055 -0
- package/package.json +99 -99
- package/src/App.vue +25 -26
- package/src/assets/biaohao.png +0 -0
- package/src/assets/bieming.png +0 -0
- package/src/assets/caozuo.png +0 -0
- package/src/assets/guige.png +0 -0
- package/src/assets/leixing.png +0 -0
- package/src/assets/pinpai.png +0 -0
- package/src/assets/qiliang.png +0 -0
- package/src/assets/xinghao.png +0 -0
- package/src/assets/yue.png +0 -0
- package/src/assets//345/257/271/345/217/267.png +0 -0
- package/src/assets//350/241/250/345/217/267 (7).png +0 -0
- package/src/assets//350/241/250/345/217/267.png +0 -0
- package/src/assets//351/224/231/345/217/267.png +0 -0
- package/src/components/NavBottomVVV.vue +2 -2
- package/src/components/iot/InstructMessage.vue +313 -0
- package/src/components/iot/IotBaseInfo.vue +97 -0
- package/src/components/iot/IotMeterInfo.vue +77 -0
- package/src/components/iot/iotMonitoringMain.vue +109 -78
- package/src/main.js +37 -37
- package/src/systemphone.js +11 -7
- package/src/systemphonegrid.js +148 -132
- package/yarn.lock +6399 -0
- package/src/components/iot/iotMonitoringFun.vue +0 -24
- package/src/components/iot/iotMonitoringQuery.vue +0 -24
package/.npmignore
ADDED
package/SystemPhone.iml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<module external.linked.project.id="SystemPhone" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
|
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
+
<exclude-output />
|
|
5
|
+
<content url="file://$MODULE_DIR$" />
|
|
6
|
+
<orderEntry type="inheritedJdk" />
|
|
7
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
|
8
|
+
</component>
|
|
9
|
+
</module>
|
package/build/dev-server.js
CHANGED
|
@@ -38,10 +38,26 @@ var proxyTable = {
|
|
|
38
38
|
// // target: 'http://127.0.0.1:8082'
|
|
39
39
|
// target: 'http://121.36.106.17:8400/'
|
|
40
40
|
// },
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
'/rs/sql/getUserByMeter': {
|
|
42
|
+
// target: 'http://127.0.0.1:8081'
|
|
43
|
+
target: 'http://localhost:8025'
|
|
44
|
+
},
|
|
45
|
+
'/rs/logic/againOpenAccount': {
|
|
46
|
+
// target: 'http://127.0.0.1:8081'
|
|
47
|
+
target: 'http://localhost:8025'
|
|
48
|
+
},
|
|
49
|
+
'/rs/logic/againSendInstruct': {
|
|
50
|
+
// target: 'http://127.0.0.1:8081'
|
|
51
|
+
target: 'http://localhost:8025'
|
|
52
|
+
},
|
|
53
|
+
'/rs/logic/cancelSendInstruct': {
|
|
54
|
+
// target: 'http://127.0.0.1:8081'
|
|
55
|
+
target: 'http://localhost:8025'
|
|
56
|
+
},
|
|
57
|
+
'/rs/sql/iot_singleTable_OrderBy': {
|
|
58
|
+
// target: 'http://127.0.0.1:8081'
|
|
59
|
+
target: 'http://localhost:8025'
|
|
60
|
+
},
|
|
45
61
|
// 呼叫系统主数据服务
|
|
46
62
|
'/rs': {
|
|
47
63
|
// target: 'http://127.0.0.1:8082'
|
|
@@ -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
|
-
'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\/safecheck-client\/src/,
|
|
42
|
-
/node_modules\/telephone-clients\/src/,
|
|
43
|
-
/node_modules\/readmeter-client\/src/
|
|
44
|
-
]
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
test: /\.json$/,
|
|
48
|
-
loader: 'json'
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
test: /\.html$/,
|
|
52
|
-
loader: 'vue-html'
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
test: /\.
|
|
56
|
-
loader: 'style!css
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
test: /\.
|
|
60
|
-
loader: '
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
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
|
+
'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\/safecheck-client\/src/,
|
|
42
|
+
/node_modules\/telephone-clients\/src/,
|
|
43
|
+
/node_modules\/readmeter-client\/src/
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
test: /\.json$/,
|
|
48
|
+
loader: 'json'
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
test: /\.html$/,
|
|
52
|
+
loader: 'vue-html'
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
test: /\.css$/,
|
|
56
|
+
loader: 'style!css'
|
|
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
|
+
}
|