apply-clients 7.1.36-yuchuan-4.1 → 7.1.36-yuchuan-6
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/build/dev-server.js +172 -173
- package/package.json +120 -119
- package/src/apply.js +0 -6
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +1101 -1101
- package/src/components/product/ChongZheng/ApplyChongZhengList.vue +415 -415
- package/src/components/product/Function/InstallInfoSelect.vue +371 -371
- package/src/components/product/List/OldShowDevices.vue +271 -271
- package/src/components/product/List/ShowAllActivity.vue +540 -540
- package/src/components/product/List/ShowDevices.vue +279 -279
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +446 -446
- package/src/components/product/Process/ExplorationSelect.vue +597 -597
- package/src/components/product/Process/Processes/Print/printCharge.vue +3 -3
- package/src/components/product/Process/Processes/Print/printGaiXianCharge.vue +3 -3
- package/src/components/product/Stop/StopApplyList.vue +224 -224
- package/src/components/product/Supervisory/SupervisoryList.vue +557 -557
- package/src/components/product/Supervisory/YiBanSupervisoryList.vue +539 -539
- package/src/main.js +27 -27
- package/yarn.lock +9824 -0
- package/src/components/product/GongJianPush/ApplyPushDispose.vue +0 -182
- package/src/components/product/GongJianPush/ApplyPushList.vue +0 -192
- package/src/components/product/GongJianPush/ApplyPushManage.vue +0 -83
- package/yarn-error.log +0 -9968
package/build/dev-server.js
CHANGED
|
@@ -1,173 +1,172 @@
|
|
|
1
|
-
var express = require('express')
|
|
2
|
-
var webpack = require('webpack')
|
|
3
|
-
var config = require('./webpack.dev.conf')
|
|
4
|
-
var proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
-
// var httpProxy = require('http-proxy')
|
|
6
|
-
var app = express()
|
|
7
|
-
var compiler = webpack(config)
|
|
8
|
-
// var proxy = httpProxy.createProxyServer()
|
|
9
|
-
// var ldap = 'http://121.36.79.201:8400'
|
|
10
|
-
// var applyinstall = 'http://121.36.79.201:8400'
|
|
11
|
-
// var ldap = 'http://193.168.1.64:8082'
|
|
12
|
-
var ldap = 'http://193.168.1.
|
|
13
|
-
var applyinstall = 'http://
|
|
14
|
-
// var applyinstall = 'http://193.168.1.44:8600'
|
|
15
|
-
// var fadada = 'http://127.0.0.1:8181'
|
|
16
|
-
var fadada = 'http://193.168.1.44:8600'
|
|
17
|
-
|
|
18
|
-
var proxyTable = {
|
|
19
|
-
// ---------------------------
|
|
20
|
-
'/rs/logic/pushShortUrlSms': {
|
|
21
|
-
target: fadada
|
|
22
|
-
},
|
|
23
|
-
'/rs/logic/generateContract': {
|
|
24
|
-
target: fadada
|
|
25
|
-
},
|
|
26
|
-
'/rs/logic/getAuthSubject': {
|
|
27
|
-
target: fadada
|
|
28
|
-
},
|
|
29
|
-
'/rs/sql/getAuthSubjectList': {
|
|
30
|
-
target: fadada
|
|
31
|
-
},
|
|
32
|
-
'/rs/logic/keyExtSign': {
|
|
33
|
-
target: fadada
|
|
34
|
-
},
|
|
35
|
-
'/rs/logic/keyExtSignAuto': {
|
|
36
|
-
target: fadada
|
|
37
|
-
},
|
|
38
|
-
// 重新发送实名认证短信
|
|
39
|
-
'/rs/logic/anotherAuthSubject': {
|
|
40
|
-
target: fadada
|
|
41
|
-
},
|
|
42
|
-
// ---------------------------
|
|
43
|
-
'/rs/logic/getSaleInitData': {
|
|
44
|
-
target: ldap
|
|
45
|
-
},
|
|
46
|
-
'/rs/logic/saveInstruct': {
|
|
47
|
-
target: 'http://193.168.1.64:8082'
|
|
48
|
-
},
|
|
49
|
-
'/rs/logic/updateNetWorkValve': {
|
|
50
|
-
target: 'http://193.168.1.64:8082'
|
|
51
|
-
},
|
|
52
|
-
'/rs/logic/uploadSave': {
|
|
53
|
-
target: 'http://193.168.1.16:8003'
|
|
54
|
-
},
|
|
55
|
-
'/rs/workflow': {
|
|
56
|
-
target: applyinstall
|
|
57
|
-
},
|
|
58
|
-
'/apply': {
|
|
59
|
-
target: applyinstall
|
|
60
|
-
},
|
|
61
|
-
'/rs/vue': {
|
|
62
|
-
target: ldap
|
|
63
|
-
},
|
|
64
|
-
// 查找资源服务数据
|
|
65
|
-
'/rs/search': {
|
|
66
|
-
target: ldap
|
|
67
|
-
},
|
|
68
|
-
// 发票组织数据
|
|
69
|
-
'/rs/logic/bjEticketCharge': {
|
|
70
|
-
target: 'http://193.168.1.6:8082'
|
|
71
|
-
},
|
|
72
|
-
// 开发票
|
|
73
|
-
'/rs/logic/bjOpenEticket': {
|
|
74
|
-
target: 'http://193.168.1.6:8082'
|
|
75
|
-
},
|
|
76
|
-
// 获取发票明细
|
|
77
|
-
'/rs/logic/queryEticket': {
|
|
78
|
-
target: 'http://193.168.1.44:8400'
|
|
79
|
-
},
|
|
80
|
-
// 创建小区
|
|
81
|
-
'/rs/logic/address_updatearea': {
|
|
82
|
-
target: ldap
|
|
83
|
-
},
|
|
84
|
-
'/rs/phone/send': {
|
|
85
|
-
target: 'http://193.168.1.21:80'
|
|
86
|
-
},
|
|
87
|
-
// 用户登录服务地址
|
|
88
|
-
'/rs/user': {
|
|
89
|
-
target: ldap
|
|
90
|
-
},
|
|
91
|
-
'/rs/logic/getInitData': {
|
|
92
|
-
target: ldap?ldap:applyinstall
|
|
93
|
-
},
|
|
94
|
-
'/rs/logic/getLogin': {
|
|
95
|
-
target: ldap
|
|
96
|
-
},
|
|
97
|
-
'/rs/file': { // 文件上传
|
|
98
|
-
target: applyinstall
|
|
99
|
-
},
|
|
100
|
-
'/project': { // 文件回显
|
|
101
|
-
target: applyinstall
|
|
102
|
-
},
|
|
103
|
-
'/rs/apply': {
|
|
104
|
-
target: applyinstall,
|
|
105
|
-
pathRewrite: {
|
|
106
|
-
'^/rs/apply': '/rs'
|
|
107
|
-
}
|
|
108
|
-
},
|
|
109
|
-
'/rs': {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
app.use(
|
|
147
|
-
//
|
|
148
|
-
// res.header('Access-Control-Allow-
|
|
149
|
-
// res.header('Access-Control-Allow-
|
|
150
|
-
// res.header('
|
|
151
|
-
// res.header('
|
|
152
|
-
// res.header('
|
|
153
|
-
//
|
|
154
|
-
//
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
//
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
})
|
|
1
|
+
var express = require('express')
|
|
2
|
+
var webpack = require('webpack')
|
|
3
|
+
var config = require('./webpack.dev.conf')
|
|
4
|
+
var proxyMiddleware = require('http-proxy-middleware')
|
|
5
|
+
// var httpProxy = require('http-proxy')
|
|
6
|
+
var app = express()
|
|
7
|
+
var compiler = webpack(config)
|
|
8
|
+
// var proxy = httpProxy.createProxyServer()
|
|
9
|
+
// var ldap = 'http://121.36.79.201:8400'
|
|
10
|
+
// var applyinstall = 'http://121.36.79.201:8400'
|
|
11
|
+
// var ldap = 'http://193.168.1.64:8082'
|
|
12
|
+
var ldap = 'http://193.168.1.218:8400/'
|
|
13
|
+
var applyinstall = 'http://193.168.1.218:8400/'
|
|
14
|
+
// var applyinstall = 'http://193.168.1.44:8600'
|
|
15
|
+
// var fadada = 'http://127.0.0.1:8181'
|
|
16
|
+
var fadada = 'http://193.168.1.44:8600'
|
|
17
|
+
|
|
18
|
+
var proxyTable = {
|
|
19
|
+
// ---------------------------
|
|
20
|
+
'/rs/logic/pushShortUrlSms': {
|
|
21
|
+
target: fadada
|
|
22
|
+
},
|
|
23
|
+
'/rs/logic/generateContract': {
|
|
24
|
+
target: fadada
|
|
25
|
+
},
|
|
26
|
+
'/rs/logic/getAuthSubject': {
|
|
27
|
+
target: fadada
|
|
28
|
+
},
|
|
29
|
+
'/rs/sql/getAuthSubjectList': {
|
|
30
|
+
target: fadada
|
|
31
|
+
},
|
|
32
|
+
'/rs/logic/keyExtSign': {
|
|
33
|
+
target: fadada
|
|
34
|
+
},
|
|
35
|
+
'/rs/logic/keyExtSignAuto': {
|
|
36
|
+
target: fadada
|
|
37
|
+
},
|
|
38
|
+
// 重新发送实名认证短信
|
|
39
|
+
'/rs/logic/anotherAuthSubject': {
|
|
40
|
+
target: fadada
|
|
41
|
+
},
|
|
42
|
+
// ---------------------------
|
|
43
|
+
'/rs/logic/getSaleInitData': {
|
|
44
|
+
target: ldap
|
|
45
|
+
},
|
|
46
|
+
'/rs/logic/saveInstruct': {
|
|
47
|
+
target: 'http://193.168.1.64:8082'
|
|
48
|
+
},
|
|
49
|
+
'/rs/logic/updateNetWorkValve': {
|
|
50
|
+
target: 'http://193.168.1.64:8082'
|
|
51
|
+
},
|
|
52
|
+
'/rs/logic/uploadSave': {
|
|
53
|
+
target: 'http://193.168.1.16:8003'
|
|
54
|
+
},
|
|
55
|
+
'/rs/workflow': {
|
|
56
|
+
target: applyinstall
|
|
57
|
+
},
|
|
58
|
+
'/apply': {
|
|
59
|
+
target: applyinstall
|
|
60
|
+
},
|
|
61
|
+
'/rs/vue': {
|
|
62
|
+
target: ldap
|
|
63
|
+
},
|
|
64
|
+
// 查找资源服务数据
|
|
65
|
+
'/rs/search': {
|
|
66
|
+
target: ldap
|
|
67
|
+
},
|
|
68
|
+
// 发票组织数据
|
|
69
|
+
'/rs/logic/bjEticketCharge': {
|
|
70
|
+
target: 'http://193.168.1.6:8082'
|
|
71
|
+
},
|
|
72
|
+
// 开发票
|
|
73
|
+
'/rs/logic/bjOpenEticket': {
|
|
74
|
+
target: 'http://193.168.1.6:8082'
|
|
75
|
+
},
|
|
76
|
+
// 获取发票明细
|
|
77
|
+
'/rs/logic/queryEticket': {
|
|
78
|
+
target: 'http://193.168.1.44:8400'
|
|
79
|
+
},
|
|
80
|
+
// 创建小区
|
|
81
|
+
'/rs/logic/address_updatearea': {
|
|
82
|
+
target: ldap
|
|
83
|
+
},
|
|
84
|
+
'/rs/phone/send': {
|
|
85
|
+
target: 'http://193.168.1.21:80'
|
|
86
|
+
},
|
|
87
|
+
// 用户登录服务地址
|
|
88
|
+
'/rs/user': {
|
|
89
|
+
target: ldap
|
|
90
|
+
},
|
|
91
|
+
'/rs/logic/getInitData': {
|
|
92
|
+
target: ldap?ldap:applyinstall
|
|
93
|
+
},
|
|
94
|
+
'/rs/logic/getLogin': {
|
|
95
|
+
target: ldap
|
|
96
|
+
},
|
|
97
|
+
'/rs/file': { // 文件上传
|
|
98
|
+
target: applyinstall
|
|
99
|
+
},
|
|
100
|
+
'/project': { // 文件回显
|
|
101
|
+
target: applyinstall
|
|
102
|
+
},
|
|
103
|
+
'/rs/apply': {
|
|
104
|
+
target: applyinstall,
|
|
105
|
+
pathRewrite: {
|
|
106
|
+
'^/rs/apply': '/rs'
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
'/rs': {
|
|
110
|
+
target: applyinstall
|
|
111
|
+
},
|
|
112
|
+
'/ws': {
|
|
113
|
+
target: applyinstall,
|
|
114
|
+
ws: true // 代理webSocket
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
var devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
119
|
+
publicPath: config.output.publicPath,
|
|
120
|
+
stats: {
|
|
121
|
+
colors: true,
|
|
122
|
+
chunks: false
|
|
123
|
+
}
|
|
124
|
+
})
|
|
125
|
+
|
|
126
|
+
var hotMiddleware = require('webpack-hot-middleware')(compiler)
|
|
127
|
+
// force page reload when html-webpack-plugin template changes
|
|
128
|
+
compiler.plugin('compilation', function (compilation) {
|
|
129
|
+
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
|
|
130
|
+
hotMiddleware.publish({action: 'reload'})
|
|
131
|
+
cb()
|
|
132
|
+
})
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
// proxy api requests
|
|
136
|
+
Object.keys(proxyTable).forEach(function (context) {
|
|
137
|
+
var options = proxyTable[context]
|
|
138
|
+
if (typeof options === 'string') {
|
|
139
|
+
options = {target: options}
|
|
140
|
+
}
|
|
141
|
+
app.use(proxyMiddleware(context, options))
|
|
142
|
+
})
|
|
143
|
+
|
|
144
|
+
// handle fallback for HTML5 history API
|
|
145
|
+
app.use(require('connect-history-api-fallback')())
|
|
146
|
+
// app.use(function (req, res, next) {
|
|
147
|
+
// res.header('Access-Control-Allow-Origin', '*')
|
|
148
|
+
// res.header('Access-Control-Allow-Headers', 'X-Requested-With')
|
|
149
|
+
// res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
|
|
150
|
+
// res.header('X-Powered-By', '3,2,1')
|
|
151
|
+
// res.header('Access-Control-Allow-Credentials', 'true')
|
|
152
|
+
// res.header('Content-Type', 'application/json;charset=utf-8')
|
|
153
|
+
// next()
|
|
154
|
+
// })
|
|
155
|
+
|
|
156
|
+
// serve webpack bundle output
|
|
157
|
+
app.use(devMiddleware)
|
|
158
|
+
|
|
159
|
+
// enable hot-reload and state-preserving
|
|
160
|
+
// compilation error display
|
|
161
|
+
app.use(hotMiddleware)
|
|
162
|
+
|
|
163
|
+
// serve pure static assets
|
|
164
|
+
app.use('/static', express.static('./static'))
|
|
165
|
+
|
|
166
|
+
module.exports = app.listen(8300, function (err) {
|
|
167
|
+
if (err) {
|
|
168
|
+
console.log(err)
|
|
169
|
+
return
|
|
170
|
+
}
|
|
171
|
+
console.log('Listening at http://localhost:8300')
|
|
172
|
+
})
|
package/package.json
CHANGED
|
@@ -1,119 +1,120 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "apply-clients",
|
|
3
|
-
"version": "7.1.36-yuchuan-
|
|
4
|
-
"description": "报建前端模块",
|
|
5
|
-
"main": "src/index.js",
|
|
6
|
-
"directories": {
|
|
7
|
-
"example": "examples",
|
|
8
|
-
"test": "test"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"unit": "karma start test/unit/karma.conf.js",
|
|
12
|
-
"example": "node build/example-server.js",
|
|
13
|
-
"dev": "node build/dev-server.js",
|
|
14
|
-
"lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
|
|
15
|
-
"build": "rimraf dist && mkdirp dist && ncp static dist/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
16
|
-
"buildandroid": "rimraf dist-android && mkdirp dist-android && ncp static dist-android/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prodandroid.conf.js",
|
|
17
|
-
"e2e": "node test/e2e/runner.js",
|
|
18
|
-
"release": "bash build/release.sh"
|
|
19
|
-
},
|
|
20
|
-
"repository": {
|
|
21
|
-
"type": "git",
|
|
22
|
-
"url": "https://gitee.com/aote/ApplyInstall.git"
|
|
23
|
-
},
|
|
24
|
-
"keywords": [
|
|
25
|
-
"ApplyInstall"
|
|
26
|
-
],
|
|
27
|
-
"author": "zx <939981212@qq.com>",
|
|
28
|
-
"license": "ISC",
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@amap/amap-jsapi-loader": "^1.0.1",
|
|
31
|
-
"@logicflow/core": "^0.4.3",
|
|
32
|
-
"co": "4.6.0",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"less
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"vue
|
|
42
|
-
"vue-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"babel-
|
|
47
|
-
"babel-
|
|
48
|
-
"babel-
|
|
49
|
-
"babel-preset-
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"cross-
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"eslint
|
|
58
|
-
"eslint-
|
|
59
|
-
"eslint-
|
|
60
|
-
"eslint-
|
|
61
|
-
"eslint-plugin-
|
|
62
|
-
"eslint-plugin-
|
|
63
|
-
"eslint-plugin-
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"karma
|
|
80
|
-
"karma-
|
|
81
|
-
"karma-
|
|
82
|
-
"karma-
|
|
83
|
-
"karma-
|
|
84
|
-
"karma-
|
|
85
|
-
"karma-
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"sinon
|
|
97
|
-
"
|
|
98
|
-
"style
|
|
99
|
-
"
|
|
100
|
-
"system-
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"vue-
|
|
104
|
-
"vue-
|
|
105
|
-
"vue-loader": "^
|
|
106
|
-
"vue-
|
|
107
|
-
"vue-
|
|
108
|
-
"vue-
|
|
109
|
-
"vue-
|
|
110
|
-
"vue-
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"webpack
|
|
114
|
-
"webpack-
|
|
115
|
-
"webpack-
|
|
116
|
-
"
|
|
117
|
-
"weixin-
|
|
118
|
-
|
|
119
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "apply-clients",
|
|
3
|
+
"version": "7.1.36-yuchuan-6",
|
|
4
|
+
"description": "报建前端模块",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"directories": {
|
|
7
|
+
"example": "examples",
|
|
8
|
+
"test": "test"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"unit": "karma start test/unit/karma.conf.js",
|
|
12
|
+
"example": "node build/example-server.js",
|
|
13
|
+
"dev": "node build/dev-server.js",
|
|
14
|
+
"lint": "eslint src/**.js test/e2e/**.js test/unit/specs/** build/**.js",
|
|
15
|
+
"build": "rimraf dist && mkdirp dist && ncp static dist/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prod.conf.js",
|
|
16
|
+
"buildandroid": "rimraf dist-android && mkdirp dist-android && ncp static dist-android/static && cross-env NODE_ENV=production webpack --progress --hide-modules --config build/webpack.prodandroid.conf.js",
|
|
17
|
+
"e2e": "node test/e2e/runner.js",
|
|
18
|
+
"release": "bash build/release.sh"
|
|
19
|
+
},
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://gitee.com/aote/ApplyInstall.git"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"ApplyInstall"
|
|
26
|
+
],
|
|
27
|
+
"author": "zx <939981212@qq.com>",
|
|
28
|
+
"license": "ISC",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@amap/amap-jsapi-loader": "^1.0.1",
|
|
31
|
+
"@logicflow/core": "^0.4.3",
|
|
32
|
+
"co": "4.6.0",
|
|
33
|
+
"crypto-js": "^4.2.0",
|
|
34
|
+
"happypack": "^5.0.1",
|
|
35
|
+
"jsencrypt": "3.0.0-rc.1",
|
|
36
|
+
"less": "^2.7.1",
|
|
37
|
+
"less-loader": "^2.2.3",
|
|
38
|
+
"lib-flexible": "^0.3.2",
|
|
39
|
+
"px2rem-loader": "^0.1.9",
|
|
40
|
+
"qrcodejs2": "0.0.2",
|
|
41
|
+
"vue": "^1.0.17",
|
|
42
|
+
"vue-amap": "^0.5.10",
|
|
43
|
+
"vue-bubble": "^1.0.3"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"babel-core": "^6.0.0",
|
|
47
|
+
"babel-loader": "^6.0.0",
|
|
48
|
+
"babel-plugin-transform-runtime": "^6.0.0",
|
|
49
|
+
"babel-preset-es2015": "^6.0.0",
|
|
50
|
+
"babel-preset-stage-2": "^6.0.0",
|
|
51
|
+
"chai": "^3.5.0",
|
|
52
|
+
"connect-history-api-fallback": "^1.1.0",
|
|
53
|
+
"cross-env": "^1.0.7",
|
|
54
|
+
"cross-spawn": "^2.1.5",
|
|
55
|
+
"css-loader": "^0.23.0",
|
|
56
|
+
"echarts": "^4.1.0",
|
|
57
|
+
"eslint": "^2.0.0",
|
|
58
|
+
"eslint-config-standard": "^5.1.0",
|
|
59
|
+
"eslint-friendly-formatter": "^1.2.2",
|
|
60
|
+
"eslint-loader": "^1.3.0",
|
|
61
|
+
"eslint-plugin-html": "^1.3.0",
|
|
62
|
+
"eslint-plugin-promise": "^1.0.8",
|
|
63
|
+
"eslint-plugin-standard": "^1.3.2",
|
|
64
|
+
"eslint-plugin-vue": "^0.1.1",
|
|
65
|
+
"eventsource-polyfill": "^0.9.6",
|
|
66
|
+
"express": "^4.17.0",
|
|
67
|
+
"extract-text-webpack-plugin": "^1.0.1",
|
|
68
|
+
"fadada-clients": "1.0.19",
|
|
69
|
+
"file-loader": "^0.8.4",
|
|
70
|
+
"form-create": "^1.6.6",
|
|
71
|
+
"function-bind": "^1.0.2",
|
|
72
|
+
"html-webpack-plugin": "^2.8.1",
|
|
73
|
+
"http-proxy-middleware": "^0.11.0",
|
|
74
|
+
"inject-loader": "^2.0.1",
|
|
75
|
+
"isparta-loader": "^2.0.0",
|
|
76
|
+
"jasmine-core": "^2.4.1",
|
|
77
|
+
"jquery": "^3.3.1",
|
|
78
|
+
"json-loader": "^0.5.4",
|
|
79
|
+
"karma": "^1.4.1",
|
|
80
|
+
"karma-chrome-launcher": "^2.2.0",
|
|
81
|
+
"karma-coverage": "^1.1.1",
|
|
82
|
+
"karma-mocha": "^1.3.0",
|
|
83
|
+
"karma-sinon-chai": "^1.3.1",
|
|
84
|
+
"karma-sourcemap-loader": "^0.3.7",
|
|
85
|
+
"karma-spec-reporter": "0.0.31",
|
|
86
|
+
"karma-webpack": "^2.0.2",
|
|
87
|
+
"ldap-clients": "3.0.18",
|
|
88
|
+
"material-client": "^1.1.2",
|
|
89
|
+
"mkdirp": "^0.5.1",
|
|
90
|
+
"mocha": "^3.2.0",
|
|
91
|
+
"ncp": "^2.0.0",
|
|
92
|
+
"nightwatch": "^0.8.18",
|
|
93
|
+
"rimraf": "^2.5.0",
|
|
94
|
+
"sale-client": "^1.4.33",
|
|
95
|
+
"selenium-server": "2.52.0",
|
|
96
|
+
"sinon": "^2.1.0",
|
|
97
|
+
"sinon-chai": "^2.8.0",
|
|
98
|
+
"style": "0.0.3",
|
|
99
|
+
"style-loader": "^0.20.3",
|
|
100
|
+
"system-clients": "3.2.67",
|
|
101
|
+
"system-phone": "1.2.87-ycapply-7",
|
|
102
|
+
"url-loader": "^0.5.7",
|
|
103
|
+
"vue-client": "1.24.52",
|
|
104
|
+
"vue-hot-reload-api": "^1.2.0",
|
|
105
|
+
"vue-html-loader": "^1.0.0",
|
|
106
|
+
"vue-loader": "^8.2.1",
|
|
107
|
+
"vue-resource": "^1.5.0",
|
|
108
|
+
"vue-router": "^0.7.13",
|
|
109
|
+
"vue-strap": "^1.0.9",
|
|
110
|
+
"vue-style-loader": "^1.0.0",
|
|
111
|
+
"vue-validator": "^2.1.7",
|
|
112
|
+
"vux": "^2.9.4",
|
|
113
|
+
"webpack": "^1.12.2",
|
|
114
|
+
"webpack-dev-middleware": "^1.4.0",
|
|
115
|
+
"webpack-hot-middleware": "^2.6.0",
|
|
116
|
+
"webpack-merge": "^0.8.3",
|
|
117
|
+
"weixin-js-sdk": "^1.2.0",
|
|
118
|
+
"weixin-manage-client": "1.0.56"
|
|
119
|
+
}
|
|
120
|
+
}
|
package/src/apply.js
CHANGED
|
@@ -48,12 +48,6 @@ export default function () {
|
|
|
48
48
|
Vue.component('installinfoselect', (resolve) => { require(['./components/product/Function/InstallInfoSelect'], resolve) })
|
|
49
49
|
// 报建菜单页面控制层
|
|
50
50
|
Vue.component('function-service-control', (resolve) => { require(['./components/product/Function/Service/FunctionServiceControl'], resolve) })
|
|
51
|
-
// 公建数据推送业务
|
|
52
|
-
Vue.component('gongjian-apply-manage', (resolve) => { require(['./components/product/GongJianPush/ApplyPushManage'], resolve) })
|
|
53
|
-
// 报建数据列表
|
|
54
|
-
Vue.component('gongjian-apply-list', (resolve) => { require(['./components/product/GongJianPush/ApplyPushList'], resolve) })
|
|
55
|
-
// 报建数据详情
|
|
56
|
-
Vue.component('gongjian-apply-dispose', (resolve) => { require(['./components/product/GongJianPush/ApplyPushDispose'], resolve) })
|
|
57
51
|
|
|
58
52
|
// 终止报建页面入口
|
|
59
53
|
Vue.component('stop-apply', (resolve) => { require(['./components/product/Stop/StopApply'], resolve) })
|