apply-clients 3.3.71 → 3.3.73-31
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-app.js +76 -76
- package/build/dev-server.js +3 -9
- package/et --hard a251245ba614c0c56fa5f8635a803359716e66e8 +299 -0
- package/package.json +1 -1
- package/src/applyAndroid.js +4 -1
- package/src/components/android/AppServiceView.vue +8 -1
- package/src/components/android/Process/AppExplorationUser.vue +489 -396
- package/src/components/android/Process/AppServiceControl.vue +492 -16
- package/src/components/android/Process/Processes/selectApply.vue +250 -0
- package/src/components/android/Process/Processes/selectUserinfo.vue +182 -0
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +12 -1
- package/src/components/image/dwg.jpg +0 -0
- package/src/components/image/txt.jpg +0 -0
- package/src/components/product/ServiceView.vue +63 -3
- package/src/components/product/Supervisory/SupervisoryList.vue +5 -0
- package/src/components/product/VueUtils/ApplyUpload.vue +3 -1
package/build/dev-server-app.js
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
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
|
-
|
|
10
|
-
// Define HTTP proxies to your custom API backend
|
|
11
|
-
// https://github.com/chimurai/http-proxy-middleware
|
|
12
|
-
var proxyTable = {
|
|
13
|
-
'/rs': {
|
|
14
|
-
target: 'http://192.168.
|
|
15
|
-
// target: 'http://192.168.30.86:8077'
|
|
16
|
-
},
|
|
17
|
-
'/AndroidRest/rs': {
|
|
18
|
-
target: 'http://192.168.
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
var devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
23
|
-
publicPath: config.output.publicPath,
|
|
24
|
-
stats: {
|
|
25
|
-
colors: true,
|
|
26
|
-
chunks: false
|
|
27
|
-
}
|
|
28
|
-
})
|
|
29
|
-
|
|
30
|
-
var hotMiddleware = require('webpack-hot-middleware')(compiler)
|
|
31
|
-
// force page reload when html-webpack-plugin template changes
|
|
32
|
-
compiler.plugin('compilation', function (compilation) {
|
|
33
|
-
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
|
|
34
|
-
hotMiddleware.publish({action: 'reload'})
|
|
35
|
-
cb()
|
|
36
|
-
})
|
|
37
|
-
})
|
|
38
|
-
|
|
39
|
-
// proxy api requests
|
|
40
|
-
Object.keys(proxyTable).forEach(function (context) {
|
|
41
|
-
var options = proxyTable[context]
|
|
42
|
-
if (typeof options === 'string') {
|
|
43
|
-
options = {target: options}
|
|
44
|
-
}
|
|
45
|
-
app.use(proxyMiddleware(context, options))
|
|
46
|
-
})
|
|
47
|
-
|
|
48
|
-
// handle fallback for HTML5 history API
|
|
49
|
-
app.use(require('connect-history-api-fallback')())
|
|
50
|
-
// app.use(function (req, res, next) {
|
|
51
|
-
// res.header('Access-Control-Allow-Origin', '*')
|
|
52
|
-
// res.header('Access-Control-Allow-Headers', 'X-Requested-With')
|
|
53
|
-
// res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
|
|
54
|
-
// res.header('X-Powered-By', '3,2,1')
|
|
55
|
-
// res.header('Access-Control-Allow-Credentials', 'true')
|
|
56
|
-
// res.header('Content-Type', 'application/json;charset=utf-8')
|
|
57
|
-
// next()
|
|
58
|
-
// })
|
|
59
|
-
|
|
60
|
-
// serve webpack bundle output
|
|
61
|
-
app.use(devMiddleware)
|
|
62
|
-
|
|
63
|
-
// enable hot-reload and state-preserving
|
|
64
|
-
// compilation error display
|
|
65
|
-
app.use(hotMiddleware)
|
|
66
|
-
|
|
67
|
-
// serve pure static assets
|
|
68
|
-
app.use('/static', express.static('./static'))
|
|
69
|
-
|
|
70
|
-
module.exports = app.listen(8089, function (err) {
|
|
71
|
-
if (err) {
|
|
72
|
-
console.log(err)
|
|
73
|
-
return
|
|
74
|
-
}
|
|
75
|
-
console.log('Listening at http://localhost:8089')
|
|
76
|
-
})
|
|
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
|
+
|
|
10
|
+
// Define HTTP proxies to your custom API backend
|
|
11
|
+
// https://github.com/chimurai/http-proxy-middleware
|
|
12
|
+
var proxyTable = {
|
|
13
|
+
'/rs': {
|
|
14
|
+
target: 'http://192.168.20.27:8555'
|
|
15
|
+
// target: 'http://192.168.30.86:8077'
|
|
16
|
+
},
|
|
17
|
+
'/AndroidRest/rs': {
|
|
18
|
+
target: 'http://192.168.20.27:8555'
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
var devMiddleware = require('webpack-dev-middleware')(compiler, {
|
|
23
|
+
publicPath: config.output.publicPath,
|
|
24
|
+
stats: {
|
|
25
|
+
colors: true,
|
|
26
|
+
chunks: false
|
|
27
|
+
}
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
var hotMiddleware = require('webpack-hot-middleware')(compiler)
|
|
31
|
+
// force page reload when html-webpack-plugin template changes
|
|
32
|
+
compiler.plugin('compilation', function (compilation) {
|
|
33
|
+
compilation.plugin('html-webpack-plugin-after-emit', function (data, cb) {
|
|
34
|
+
hotMiddleware.publish({action: 'reload'})
|
|
35
|
+
cb()
|
|
36
|
+
})
|
|
37
|
+
})
|
|
38
|
+
|
|
39
|
+
// proxy api requests
|
|
40
|
+
Object.keys(proxyTable).forEach(function (context) {
|
|
41
|
+
var options = proxyTable[context]
|
|
42
|
+
if (typeof options === 'string') {
|
|
43
|
+
options = {target: options}
|
|
44
|
+
}
|
|
45
|
+
app.use(proxyMiddleware(context, options))
|
|
46
|
+
})
|
|
47
|
+
|
|
48
|
+
// handle fallback for HTML5 history API
|
|
49
|
+
app.use(require('connect-history-api-fallback')())
|
|
50
|
+
// app.use(function (req, res, next) {
|
|
51
|
+
// res.header('Access-Control-Allow-Origin', '*')
|
|
52
|
+
// res.header('Access-Control-Allow-Headers', 'X-Requested-With')
|
|
53
|
+
// res.header('Access-Control-Allow-Methods', 'PUT, POST, GET,DELETE, OPTIONS')
|
|
54
|
+
// res.header('X-Powered-By', '3,2,1')
|
|
55
|
+
// res.header('Access-Control-Allow-Credentials', 'true')
|
|
56
|
+
// res.header('Content-Type', 'application/json;charset=utf-8')
|
|
57
|
+
// next()
|
|
58
|
+
// })
|
|
59
|
+
|
|
60
|
+
// serve webpack bundle output
|
|
61
|
+
app.use(devMiddleware)
|
|
62
|
+
|
|
63
|
+
// enable hot-reload and state-preserving
|
|
64
|
+
// compilation error display
|
|
65
|
+
app.use(hotMiddleware)
|
|
66
|
+
|
|
67
|
+
// serve pure static assets
|
|
68
|
+
app.use('/static', express.static('./static'))
|
|
69
|
+
|
|
70
|
+
module.exports = app.listen(8089, function (err) {
|
|
71
|
+
if (err) {
|
|
72
|
+
console.log(err)
|
|
73
|
+
return
|
|
74
|
+
}
|
|
75
|
+
console.log('Listening at http://localhost:8089')
|
|
76
|
+
})
|
package/build/dev-server.js
CHANGED
|
@@ -8,14 +8,8 @@ var compiler = webpack(config)
|
|
|
8
8
|
// var proxy = httpProxy.createProxyServer()
|
|
9
9
|
// var ldap = 'http://121.36.79.201:8400'
|
|
10
10
|
// var applyinstall = 'http://121.36.79.201:8400'
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
var ldap = 'http://192.168.20.28:8400'
|
|
14
|
-
// var ldap = 'http://61.163.127.69:8555'
|
|
15
|
-
// var applyinstall = 'http://192.168.20.27:8400'
|
|
16
|
-
var applyinstall = 'http://127.0.0.1:8080'
|
|
17
|
-
// var applyinstall = 'http://61.163.127.69:8555'
|
|
18
|
-
|
|
11
|
+
var ldap = 'http://192.168.20.27:8555'
|
|
12
|
+
var applyinstall = 'http://192.168.20.27:8555'
|
|
19
13
|
var proxyTable = {
|
|
20
14
|
'/wx': {
|
|
21
15
|
target: ldap
|
|
@@ -56,7 +50,7 @@ var proxyTable = {
|
|
|
56
50
|
target: ldap
|
|
57
51
|
},
|
|
58
52
|
'/rs/logic/getInitData': {
|
|
59
|
-
target: ldap
|
|
53
|
+
target: ldap
|
|
60
54
|
},
|
|
61
55
|
'/rs/logic/getLogin': {
|
|
62
56
|
target: ldap
|
|
@@ -0,0 +1,299 @@
|
|
|
1
|
+
[33mcommit 7ca626be97595d83306544d73f12a361f6fadbb0[m[33m ([m[1;36mHEAD -> [m[1;32mmaster[m[33m, [m[1;31morigin/master[m[33m, [m[1;31morigin/HEAD[m[33m)[m
|
|
2
|
+
Author: 杜朋 <000000>
|
|
3
|
+
Date: Fri Apr 8 17:15:32 2022 +0800
|
|
4
|
+
|
|
5
|
+
改请求
|
|
6
|
+
|
|
7
|
+
[33mcommit aa551092d2ee782b7deb7d80629af5c05387a413[m
|
|
8
|
+
Author: 庞高展 <979817893@qq.com>
|
|
9
|
+
Date: Fri Apr 8 15:40:23 2022 +0800
|
|
10
|
+
|
|
11
|
+
添加安装地址
|
|
12
|
+
|
|
13
|
+
[33mcommit 7f1e4ff9c73ca6b1e5334d6a37ca39bb35213696[m
|
|
14
|
+
Author: 庞高展 <979817893@qq.com>
|
|
15
|
+
Date: Fri Apr 8 11:42:19 2022 +0800
|
|
16
|
+
|
|
17
|
+
调增区域组件地址
|
|
18
|
+
|
|
19
|
+
[33mcommit 59e417331300aeb3f95b3d4607c5bd2d334f55fe[m
|
|
20
|
+
Author: 杜朋 <000000>
|
|
21
|
+
Date: Wed Apr 6 18:00:11 2022 +0800
|
|
22
|
+
|
|
23
|
+
周口手机app新需求
|
|
24
|
+
|
|
25
|
+
[33mcommit a0f4e84f40fb542fcafa7bda01144c7abe45290f[m
|
|
26
|
+
Author: 李猛 <609363665@qq.com>
|
|
27
|
+
Date: Wed Apr 6 15:25:27 2022 +0800
|
|
28
|
+
|
|
29
|
+
流程监控判断材料领用状态更新
|
|
30
|
+
|
|
31
|
+
[33mcommit b932b80671cc7bce31dfd953898bd707011fe335[m
|
|
32
|
+
Author: 庞高展 <979817893@qq.com>
|
|
33
|
+
Date: Wed Apr 6 14:51:56 2022 +0800
|
|
34
|
+
|
|
35
|
+
去除材料明细材料审核搜索条件
|
|
36
|
+
|
|
37
|
+
[33mcommit e16fcf1bcf68a0691d1d6d5c73031af32d51e597[m
|
|
38
|
+
Author: 李猛 <609363665@qq.com>
|
|
39
|
+
Date: Tue Apr 5 17:58:26 2022 +0800
|
|
40
|
+
|
|
41
|
+
流程监控查询修订
|
|
42
|
+
|
|
43
|
+
[33mcommit 82256939a172bf5e2147f9c74e9cc0706887559d[m
|
|
44
|
+
Author: 李猛 <609363665@qq.com>
|
|
45
|
+
Date: Tue Apr 5 14:15:05 2022 +0800
|
|
46
|
+
|
|
47
|
+
版本升级(报警器)
|
|
48
|
+
|
|
49
|
+
[33mcommit 736e8590467f9fd427154b5f50fd4ed1040c270b[m
|
|
50
|
+
Author: 李猛 <609363665@qq.com>
|
|
51
|
+
Date: Thu Mar 31 16:56:09 2022 +0800
|
|
52
|
+
|
|
53
|
+
流程监控增加领用人、发货人等字段
|
|
54
|
+
|
|
55
|
+
[33mcommit e879dfd3ee4b411a5746f2c2b714d9136ec6ea32[m
|
|
56
|
+
Author: 李猛 <609363665@qq.com>
|
|
57
|
+
Date: Wed Mar 30 11:58:14 2022 +0800
|
|
58
|
+
|
|
59
|
+
提示内容修订
|
|
60
|
+
|
|
61
|
+
[33mcommit 5f52dc01ea45adf08577bcafb7bfff6a9ba2146c[m
|
|
62
|
+
Author: 李猛 <609363665@qq.com>
|
|
63
|
+
Date: Wed Mar 30 08:30:20 2022 +0800
|
|
64
|
+
|
|
65
|
+
报警器流程缴费时提示语句修改
|
|
66
|
+
|
|
67
|
+
[33mcommit c47f752028aa2731f63cf9c9ff97e7d0b307ee42[m
|
|
68
|
+
Author: 庞高展 <979817893@qq.com>
|
|
69
|
+
Date: Tue Mar 29 17:21:11 2022 +0800
|
|
70
|
+
|
|
71
|
+
材料明细导出excel 新增字段
|
|
72
|
+
|
|
73
|
+
[33mcommit 80047ddb15bf222a0f9fd6f18c23dc0e0ccf8cbb[m
|
|
74
|
+
Author: 庞高展 <979817893@qq.com>
|
|
75
|
+
Date: Tue Mar 29 08:03:19 2022 +0800
|
|
76
|
+
|
|
77
|
+
更改报警器验证地址
|
|
78
|
+
|
|
79
|
+
[33mcommit 0195970b906f6d32deafc0120ba3197fe15973d4[m
|
|
80
|
+
Author: 庞高展 <979817893@qq.com>
|
|
81
|
+
Date: Mon Mar 28 17:44:16 2022 +0800
|
|
82
|
+
|
|
83
|
+
更改报警器校验接口地址
|
|
84
|
+
|
|
85
|
+
[33mcommit 7529503525318cf62e7e6e1cb07a03904b0c5c73[m
|
|
86
|
+
Author: 庞高展 <979817893@qq.com>
|
|
87
|
+
Date: Mon Mar 28 11:28:46 2022 +0800
|
|
88
|
+
|
|
89
|
+
更改app 获取区域地址
|
|
90
|
+
|
|
91
|
+
[33mcommit 31a867784beaac1445f69adebfb5d3affb7dab12[m
|
|
92
|
+
Author: 李猛 <609363665@qq.com>
|
|
93
|
+
Date: Mon Mar 28 08:40:08 2022 +0800
|
|
94
|
+
|
|
95
|
+
手机报建类型
|
|
96
|
+
|
|
97
|
+
[33mcommit 63f36d57169951898f087bb9c023f739112d2b1e[m
|
|
98
|
+
Author: 成佳宁 <000000>
|
|
99
|
+
Date: Sun Mar 27 13:12:24 2022 +0800
|
|
100
|
+
|
|
101
|
+
3.27测试版本更新(信息公司)
|
|
102
|
+
|
|
103
|
+
[33mcommit 6fa4ec4045a40d4983e8bfa8aa2cb6362f620751[m
|
|
104
|
+
Author: 庞高展 <979817893@qq.com>
|
|
105
|
+
Date: Fri Mar 25 17:35:19 2022 +0800
|
|
106
|
+
|
|
107
|
+
代码上传
|
|
108
|
+
|
|
109
|
+
[33mcommit 7a79bc657d2bc49411826894b66b16d12cc7e402[m
|
|
110
|
+
Author: 庞高展 <979817893@qq.com>
|
|
111
|
+
Date: Fri Mar 25 17:17:26 2022 +0800
|
|
112
|
+
|
|
113
|
+
报警器流程选取材料优化
|
|
114
|
+
|
|
115
|
+
[33mcommit 92269e4a6ddfc1c6a26d3603efb21c70ae4c171f[m
|
|
116
|
+
Author: 庞高展 <979817893@qq.com>
|
|
117
|
+
Date: Fri Mar 25 13:52:54 2022 +0800
|
|
118
|
+
|
|
119
|
+
配置请求路径
|
|
120
|
+
|
|
121
|
+
[33mcommit f93c9a37817ab829a3fe9fbf83255bf4826fbca9[m
|
|
122
|
+
Author: 庞高展 <979817893@qq.com>
|
|
123
|
+
Date: Fri Mar 25 13:17:14 2022 +0800
|
|
124
|
+
|
|
125
|
+
报警器流程报建档案信息推送到汉威系统
|
|
126
|
+
|
|
127
|
+
[33mcommit 44d18383c404c5390eadc49db4a2491a9be1bc18[m
|
|
128
|
+
Author: 王钲辉 <wangzh1617@163.com>
|
|
129
|
+
Date: Thu Mar 24 11:47:52 2022 +0800
|
|
130
|
+
|
|
131
|
+
报建需求修改
|
|
132
|
+
|
|
133
|
+
[33mcommit 5239a88d49d3f230f70f2fc63db051b481ed25bf[m
|
|
134
|
+
Author: 庞高展 <979817893@qq.com>
|
|
135
|
+
Date: Thu Mar 24 10:50:44 2022 +0800
|
|
136
|
+
|
|
137
|
+
区域地址必选, 保存区域地址
|
|
138
|
+
|
|
139
|
+
[33mcommit 03a7cc0b31166298581c28993bb3ce76f797a879[m
|
|
140
|
+
Author: 庞高展 <979817893@qq.com>
|
|
141
|
+
Date: Mon Mar 21 11:44:11 2022 +0800
|
|
142
|
+
|
|
143
|
+
前端地址下拉框组件及推送插入点
|
|
144
|
+
|
|
145
|
+
[33mcommit ad79329fc91a999a4c1e6dfcbf08962317144192[m
|
|
146
|
+
Author: 李猛 <609363665@qq.com>
|
|
147
|
+
Date: Fri Mar 18 17:19:47 2022 +0800
|
|
148
|
+
|
|
149
|
+
报警器流程地址三级联动处理
|
|
150
|
+
|
|
151
|
+
[33mcommit c36298fab6c91a595ce7f1ba9be51572086b3bd2[m
|
|
152
|
+
Author: 何文强 <767849845@qq.com>
|
|
153
|
+
Date: Thu Mar 17 16:52:29 2022 +0800
|
|
154
|
+
|
|
155
|
+
版本升级
|
|
156
|
+
|
|
157
|
+
[33mcommit f7d05454517643c6a60f02a94801c4f43755953c[m
|
|
158
|
+
Author: 杜朋 <000000>
|
|
159
|
+
Date: Thu Mar 17 10:21:34 2022 +0800
|
|
160
|
+
|
|
161
|
+
验证问题处理
|
|
162
|
+
|
|
163
|
+
[33mcommit f58d7193a771033f07b0eb788b7dd1433e20b36f[m
|
|
164
|
+
Author: 何文强 <767849845@qq.com>
|
|
165
|
+
Date: Wed Mar 16 15:13:47 2022 +0800
|
|
166
|
+
|
|
167
|
+
手机端报装发起问题修改
|
|
168
|
+
|
|
169
|
+
[33mcommit 2a96465378151c974841ba9b051b4496b8aa2ef8[m
|
|
170
|
+
Author: 成佳宁 <000000>
|
|
171
|
+
Date: Wed Mar 16 13:41:42 2022 +0800
|
|
172
|
+
|
|
173
|
+
3.16测试版本更新
|
|
174
|
+
|
|
175
|
+
[33mcommit 0d46995f5c03d9ddec9c187c77ca202b36caedcf[m
|
|
176
|
+
Author: 李猛 <609363665@qq.com>
|
|
177
|
+
Date: Tue Mar 15 09:39:57 2022 +0800
|
|
178
|
+
|
|
179
|
+
28测试
|
|
180
|
+
|
|
181
|
+
[33mcommit 11edd322629153c93415fa5ecec9cb7c3cc32f89[m
|
|
182
|
+
Author: pgz <979817893@qq.com>
|
|
183
|
+
Date: Mon Mar 14 16:25:36 2022 +0800
|
|
184
|
+
|
|
185
|
+
pc端新增报警器流程
|
|
186
|
+
|
|
187
|
+
[33mcommit a251245ba614c0c56fa5f8635a803359716e66e8[m
|
|
188
|
+
Author: 杜朋 <000000>
|
|
189
|
+
Date: Mon Mar 14 14:13:07 2022 +0800
|
|
190
|
+
|
|
191
|
+
"version": "3.3.74",
|
|
192
|
+
|
|
193
|
+
[33mcommit 09f0dd25c3d4f824cfbb7658d1343941ca8472a9[m
|
|
194
|
+
Author: 杜朋 <000000>
|
|
195
|
+
Date: Mon Mar 14 13:42:27 2022 +0800
|
|
196
|
+
|
|
197
|
+
app显示报装备注
|
|
198
|
+
app实现手机号码及身份证验证
|
|
199
|
+
|
|
200
|
+
[33mcommit a5d2ec560e8b96263cbc32d2c903fe12045408d4[m
|
|
201
|
+
Merge: 5e665e4 18c6bfe
|
|
202
|
+
Author: 何文强 <767849845@qq.com>
|
|
203
|
+
Date: Mon Mar 14 09:52:18 2022 +0800
|
|
204
|
+
|
|
205
|
+
Merge remote-tracking branch 'origin/master'
|
|
206
|
+
|
|
207
|
+
[33mcommit 18c6bfe060a51b66e59c5af8080378dd959d2b41[m
|
|
208
|
+
Author: 杜朋 <000000>
|
|
209
|
+
Date: Fri Mar 11 14:51:26 2022 +0800
|
|
210
|
+
|
|
211
|
+
"version": "3.3.73",
|
|
212
|
+
|
|
213
|
+
[33mcommit fc0d5186b8dba01f46cab481b2b0581b9977f4cf[m
|
|
214
|
+
Author: 杜朋 <000000>
|
|
215
|
+
Date: Fri Mar 11 14:44:12 2022 +0800
|
|
216
|
+
|
|
217
|
+
身份证及手机号验证
|
|
218
|
+
|
|
219
|
+
[33mcommit 5e665e4331c61bede1586c53dac1f2b51c07a10f[m
|
|
220
|
+
Merge: ffdd6ad 1e5a9fb
|
|
221
|
+
Author: 何文强 <767849845@qq.com>
|
|
222
|
+
Date: Fri Mar 11 13:51:49 2022 +0800
|
|
223
|
+
|
|
224
|
+
Merge remote-tracking branch 'origin/master'
|
|
225
|
+
|
|
226
|
+
# Conflicts:
|
|
227
|
+
# package.json
|
|
228
|
+
|
|
229
|
+
[33mcommit ffdd6ad6bbf55e494920b9ad563bdaa0d8619f0e[m
|
|
230
|
+
Author: 何文强 <767849845@qq.com>
|
|
231
|
+
Date: Fri Mar 11 13:51:29 2022 +0800
|
|
232
|
+
|
|
233
|
+
手机端报装发起
|
|
234
|
+
|
|
235
|
+
[33mcommit 1e5a9fb4ac02465273c1633c076903c59854df6a[m
|
|
236
|
+
Author: 李奇璋 <3481126153@qq.com>
|
|
237
|
+
Date: Thu Mar 10 17:17:32 2022 +0800
|
|
238
|
+
|
|
239
|
+
+ apply-clients@3.3.72
|
|
240
|
+
|
|
241
|
+
[33mcommit f4835a8d70ea5d5f5f478cd9dd35c075597f63b5[m
|
|
242
|
+
Author: 李奇璋 <3481126153@qq.com>
|
|
243
|
+
Date: Thu Mar 10 17:12:47 2022 +0800
|
|
244
|
+
|
|
245
|
+
修改附件
|
|
246
|
+
|
|
247
|
+
[33mcommit 07c88a6e3089b423c44988e0f696551930a3ddf8[m
|
|
248
|
+
Author: 李奇璋 <3481126153@qq.com>
|
|
249
|
+
Date: Wed Mar 9 14:51:08 2022 +0800
|
|
250
|
+
|
|
251
|
+
修改附件
|
|
252
|
+
|
|
253
|
+
[33mcommit 1e5aa7c9f30de8b0da94940e87bb4c575fd810a8[m
|
|
254
|
+
Author: 李猛 <609363665@qq.com>
|
|
255
|
+
Date: Fri Mar 4 15:56:14 2022 +0800
|
|
256
|
+
|
|
257
|
+
手机端访问配置
|
|
258
|
+
|
|
259
|
+
[33mcommit 7a26568583704484f9d00947fdd35d4c68db2c07[m
|
|
260
|
+
Author: 李猛 <609363665@qq.com>
|
|
261
|
+
Date: Mon Jan 24 09:34:01 2022 +0800
|
|
262
|
+
|
|
263
|
+
报建签名
|
|
264
|
+
|
|
265
|
+
[33mcommit 86ca7335cb92c30d8dc68a4827f2d859d8d82739[m
|
|
266
|
+
Author: 李猛 <609363665@qq.com>
|
|
267
|
+
Date: Thu Jan 20 11:30:58 2022 +0800
|
|
268
|
+
|
|
269
|
+
流程监控增加施工单位查询条件,pc/手机端
|
|
270
|
+
|
|
271
|
+
[33mcommit 22948ac0698f9400fe9eac35a7d85cd488d160cd[m
|
|
272
|
+
Author: 李猛 <609363665@qq.com>
|
|
273
|
+
Date: Fri Jan 14 15:40:14 2022 +0800
|
|
274
|
+
|
|
275
|
+
发包
|
|
276
|
+
|
|
277
|
+
[33mcommit 808bdb693b9e9e5c5372b57735f14c048cc15515[m
|
|
278
|
+
Author: 张恒 <1425279634@qq.com>
|
|
279
|
+
Date: Thu Jan 13 13:37:24 2022 +0800
|
|
280
|
+
|
|
281
|
+
pc稍后处理逻辑修改
|
|
282
|
+
|
|
283
|
+
[33mcommit 658f18a17cd9ca9082e4ae90ff01eaeb9f083e30[m
|
|
284
|
+
Author: 张恒 <1425279634@qq.com>
|
|
285
|
+
Date: Thu Jan 13 13:18:55 2022 +0800
|
|
286
|
+
|
|
287
|
+
app稍后处理bug处理
|
|
288
|
+
|
|
289
|
+
[33mcommit d393093a6916e9fac82e47595b6e0fb0c76d2143[m
|
|
290
|
+
Author: 李猛 <123456>
|
|
291
|
+
Date: Wed Jan 12 18:04:45 2022 +0800
|
|
292
|
+
|
|
293
|
+
流程业务bug处理
|
|
294
|
+
|
|
295
|
+
[33mcommit 114799c4fa6568b4ac46b1bdd61663bfa1c7f2af[m
|
|
296
|
+
Author: 张恒 <1425279634@qq.com>
|
|
297
|
+
Date: Tue Jan 11 12:06:42 2022 +0800
|
|
298
|
+
|
|
299
|
+
+ apply-clients@3.3
|
package/package.json
CHANGED
package/src/applyAndroid.js
CHANGED
|
@@ -26,6 +26,9 @@ export default function () {
|
|
|
26
26
|
Vue.component('app-apply-devices-management', (resolve) => { require(['./components/android/Process/Processes/AppDevicesManagement'], resolve) })
|
|
27
27
|
Vue.component('app-charge-management', (resolve) => { require(['./components/android/Process/Processes/AppChargeManagement'], resolve) })
|
|
28
28
|
Vue.component('app-supplemental-agreement', (resolve) => { require(['./components/android/Process/Processes/AppSupplementalAgreement'], resolve) })
|
|
29
|
-
|
|
29
|
+
// 选择用户信息
|
|
30
|
+
Vue.component('select-userinfo', (resolve) => { require(['./components/android/Process/Processes/selectUserinfo'], resolve) })
|
|
31
|
+
// 选择报建项目
|
|
32
|
+
Vue.component('select-apply', (resolve) => { require(['./components/android/Process/Processes/selectApply'], resolve) })
|
|
30
33
|
Vue.component('app-build-sign', (resolve) => { require(['./components/android/Process/Processes/AppBuildSign'], resolve) })
|
|
31
34
|
}
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
:placeholder="item.placeholder"
|
|
35
35
|
:search="item.search"
|
|
36
36
|
close-on-select value-single
|
|
37
|
+
@select-search="selectSearch($arguments,index)"
|
|
37
38
|
:options="data.fields[index].options"
|
|
38
39
|
v-model="data.fields[index].value"
|
|
39
40
|
:value.sync="data.fields[index].value"
|
|
@@ -108,7 +109,7 @@
|
|
|
108
109
|
</div>
|
|
109
110
|
</div>
|
|
110
111
|
|
|
111
|
-
<div class="col-sm-12 col-xs-12">
|
|
112
|
+
<div class="col-sm-12 col-xs-12" id="test11">
|
|
112
113
|
<accordion one-at-a-time="true">
|
|
113
114
|
<panel v-for="(i,item) in data.onetomany" :header="item.title" :is-open="false" type="primary">
|
|
114
115
|
<app-onetomany :onetomany="item" :index="i"></app-onetomany>
|
|
@@ -519,6 +520,12 @@ export default {
|
|
|
519
520
|
}
|
|
520
521
|
}
|
|
521
522
|
}
|
|
523
|
+
},
|
|
524
|
+
selectSearch(event, index) {
|
|
525
|
+
if (this.data.fields[index].selectSearch) {
|
|
526
|
+
this.$dispatch(this.data.fields[index].selectSearch, event[0], index)
|
|
527
|
+
}
|
|
528
|
+
this.$dispatch('selectSearch', event[0], index)
|
|
522
529
|
}
|
|
523
530
|
},
|
|
524
531
|
events: {
|