apply-clients 7.1.36-yuchuan-1 → 7.1.36-yuchuan-3
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 +7 -3
- package/package.json +3 -3
- package/src/apply.js +12 -1
- package/src/applyAndroid.js +6 -0
- package/src/components/android/AppUpload.vue +15 -0
- package/src/components/android/Ignition/VentilationIgnition.vue +1 -1
- package/src/components/android/Process/AppExplorationUser.vue +2 -2
- package/src/components/android/Process/AppServiceControl.vue +1410 -1397
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +334 -334
- package/src/components/android/Task/Build/BuildTsak.vue +7 -4
- package/src/components/android/Task/GuanXianJianShe/AppExplorationGuanXian.vue +317 -0
- package/src/components/android/Task/GuanXianJianShe/AppGuanXianCaiLiao.vue +237 -0
- package/src/components/android/Task/ShenHe/BuZhangShenHe.vue +64 -64
- package/src/components/android/Task/ShenHe/JingLiShenHe.vue +64 -64
- package/src/components/android/Task/ShiGongXinXi/AppShowBuildUser.vue +11 -7
- package/src/components/android/Task/UpBuild/UpBuildDui.vue +5 -2
- package/src/components/android/Task/UpBuild/UpBuildTsak.vue +5 -2
- package/src/components/android/Task/UpBuild/UpJianLi.vue +5 -2
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +943 -606
- package/src/components/product/ApplyGaiXianCharge/ApplyGaiXianChargeList.vue +8 -7
- package/src/components/product/ApplyGuanXian/GuanXianCaiLiao.vue +236 -235
- package/src/components/product/ApplyGuanXian/GuanXianExplorationSelect.vue +324 -323
- package/src/components/product/ChongZheng/ApplyChongZhengList.vue +10 -9
- package/src/components/product/Function/InstallInfoSelect.vue +15 -13
- package/src/components/product/Function/Service/FunctionServiceControl.vue +475 -475
- package/src/components/product/Ignition/IgnitionList.vue +236 -236
- package/src/components/product/Ignition/IgnitionListManage.vue +403 -204
- package/src/components/product/Ignition/IgnitionRecord.vue +14 -13
- package/src/components/product/List/ShowAllActivity.vue +455 -0
- package/src/components/product/List/ShowDevices.vue +279 -279
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +9 -8
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +6 -0
- package/src/components/product/Process/ExplorationSelect.vue +591 -580
- package/src/components/product/Process/ExplorationUser.vue +158 -158
- package/src/components/product/Process/New1ExplorationUser.vue +201 -0
- package/src/components/product/Process/New2ExplorationUser.vue +163 -0
- package/src/components/product/Process/NewExplorationSelect.vue +586 -0
- package/src/components/product/Process/NewExplorationUser.vue +219 -184
- package/src/components/product/Process/Processes/ApplyChaiChuInfo.vue +587 -587
- package/src/components/product/Process/Processes/InstallationDetails.vue +80 -7
- package/src/components/product/Process/Processes/Print/printPaymentApproval.vue +224 -224
- package/src/components/product/Process/Processes/newDevicesManagement.vue +26 -1
- package/src/components/product/Process/Processes/newInstallationDetails.vue +1 -36
- package/src/components/product/Process/Processes/selectOldUserinfo.vue +1 -1
- package/src/components/product/Process/Service/ServiceControl.vue +2166 -2155
- package/src/components/product/Report/ReportItems.vue +85 -79
- package/src/components/product/Report/apply-stair-kaifa.vue +0 -1
- package/src/components/product/Report/gongchengbu.vue +199 -0
- package/src/components/product/ServiceView.vue +12 -0
- package/src/components/product/Stop/StopApplyList.vue +8 -8
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +14 -0
- package/src/components/product/Supervisory/SupervisoryList.vue +539 -536
- package/src/components/product/Supervisory/YiBanSupervisoryControl.vue +114 -0
- package/src/components/product/Supervisory/YiBanSupervisoryList.vue +541 -0
- package/dist-android.7z +0 -0
- package/dist.7z +0 -0
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +0 -207
- package/yarn-error.log +0 -9976
package/build/dev-server.js
CHANGED
|
@@ -12,8 +12,8 @@ var compiler = webpack(config)
|
|
|
12
12
|
var ldap = 'http://193.168.1.6:8082'
|
|
13
13
|
var applyinstall = 'http://127.0.0.1:8080'
|
|
14
14
|
// var applyinstall = 'http://193.168.1.44:8600'
|
|
15
|
-
var fadada = 'http://127.0.0.1:8181'
|
|
16
|
-
|
|
15
|
+
// var fadada = 'http://127.0.0.1:8181'
|
|
16
|
+
var fadada = 'http://193.168.1.44:8600'
|
|
17
17
|
|
|
18
18
|
var proxyTable = {
|
|
19
19
|
// ---------------------------
|
|
@@ -95,9 +95,12 @@ var proxyTable = {
|
|
|
95
95
|
target: ldap
|
|
96
96
|
},
|
|
97
97
|
'/rs/file': { // 文件上传
|
|
98
|
-
target:
|
|
98
|
+
target: ldap
|
|
99
99
|
},
|
|
100
100
|
'/project': { // 文件回显
|
|
101
|
+
target: ldap
|
|
102
|
+
},
|
|
103
|
+
'/rs/logic/ApplyProductService': {
|
|
101
104
|
target: applyinstall
|
|
102
105
|
},
|
|
103
106
|
'/rs/apply': {
|
|
@@ -109,6 +112,7 @@ var proxyTable = {
|
|
|
109
112
|
'/rs': {
|
|
110
113
|
target: applyinstall
|
|
111
114
|
},
|
|
115
|
+
|
|
112
116
|
'/ws': {
|
|
113
117
|
target: applyinstall,
|
|
114
118
|
ws: true // 代理webSocket
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apply-clients",
|
|
3
|
-
"version": "7.1.36-yuchuan-
|
|
3
|
+
"version": "7.1.36-yuchuan-3",
|
|
4
4
|
"description": "报建前端模块",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"directories": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"eventsource-polyfill": "^0.9.6",
|
|
65
65
|
"express": "^4.17.0",
|
|
66
66
|
"extract-text-webpack-plugin": "^1.0.1",
|
|
67
|
-
"fadada-clients": "1.0.
|
|
67
|
+
"fadada-clients": "1.0.18",
|
|
68
68
|
"file-loader": "^0.8.4",
|
|
69
69
|
"form-create": "^1.6.6",
|
|
70
70
|
"function-bind": "^1.0.2",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"sinon-chai": "^2.8.0",
|
|
97
97
|
"style": "0.0.3",
|
|
98
98
|
"style-loader": "^0.20.3",
|
|
99
|
-
"system-clients": "3.2.
|
|
99
|
+
"system-clients": "3.2.67",
|
|
100
100
|
"system-phone": "1.2.87-ycapply-7",
|
|
101
101
|
"url-loader": "^0.5.7",
|
|
102
102
|
"vue-client": "1.24.52",
|
package/src/apply.js
CHANGED
|
@@ -10,10 +10,15 @@ export default function () {
|
|
|
10
10
|
/** ***************************报建模块*********************************/
|
|
11
11
|
/** 报建流程业务 **/
|
|
12
12
|
// 报建流程业务总入口
|
|
13
|
+
|
|
13
14
|
Vue.component('exploration-user', (resolve) => { require(['./components/product/Process/ExplorationUser'], resolve) })
|
|
14
15
|
Vue.component('new-exploration-user', (resolve) => { require(['./components/product/Process/NewExplorationUser'], resolve) })
|
|
16
|
+
Vue.component('new1-exploration-user', (resolve) => { require(['./components/product/Process/New1ExplorationUser'], resolve) })
|
|
17
|
+
Vue.component('new2-exploration-user', (resolve) => { require(['./components/product/Process/New2ExplorationUser'], resolve) })
|
|
15
18
|
// 报建流程业务总入口页面list布局
|
|
16
19
|
Vue.component('exploration-select', (resolve) => { require(['./components/product/Process/ExplorationSelect'], resolve) })
|
|
20
|
+
// 用来返回查询列表
|
|
21
|
+
Vue.component('new-exploration-select', (resolve) => { require(['./components/product/Process/NewExplorationSelect.vue'], resolve) })
|
|
17
22
|
// 业务tab(control层)页
|
|
18
23
|
Vue.component('service-control', (resolve) => { require(['./components/product/Process/Service/ServiceControl'], resolve) })
|
|
19
24
|
// 公共业务显示(view层)页
|
|
@@ -25,8 +30,10 @@ export default function () {
|
|
|
25
30
|
/** 报建监控业务 **/
|
|
26
31
|
// 流程监控入口页
|
|
27
32
|
Vue.component('supervisory-control', (resolve) => { require(['./components/product/Supervisory/SupervisoryControl'], resolve) })
|
|
33
|
+
Vue.component('yiban-supervisory-control', (resolve) => { require(['./components/product/Supervisory/YiBanSupervisoryControl.vue'], resolve) })
|
|
28
34
|
// 流程监控列表页
|
|
29
35
|
Vue.component('supervisory-list', (resolve) => { require(['./components/product/Supervisory/SupervisoryList'], resolve) })
|
|
36
|
+
Vue.component('yiban-supervisory-list', (resolve) => { require(['./components/product/Supervisory/YiBanSupervisoryList.vue'], resolve) })
|
|
30
37
|
// 业务tab(control层)页
|
|
31
38
|
Vue.component('supervisory-service-control', (resolve) => { require(['./components/product/Supervisory/Service/SupervisoryServiceControl'], resolve) })
|
|
32
39
|
// 流程列表页
|
|
@@ -99,7 +106,7 @@ export default function () {
|
|
|
99
106
|
Vue.component('public-supervisoryh-cart', (resolve) => { require(['./public/history/PublicSupervisoryhCart'], resolve) })
|
|
100
107
|
|
|
101
108
|
// 地图
|
|
102
|
-
Vue.component('apply-map-com', (resolve) => { require(['./components/product/ApplyMap/ApplyMapCom'], resolve) })
|
|
109
|
+
Vue.component('apply-map-com', (resolve) => { require(['./components/product/ApplyMap/ApplyMapCom.vue'], resolve) })
|
|
103
110
|
Vue.component('apply-input-search', (resolve) => { require(['./components/product/ApplyMap/ApplyInputSearch'], resolve) })
|
|
104
111
|
Vue.component('apply-drag-list', (resolve) => { require(['./components/product/ApplyMap/ApplyDragaboutList'], resolve) })
|
|
105
112
|
Vue.component('apply-map-location', (resolve) => { require(['./components/product/ApplyMap/ApplyMapLocation'], resolve) })
|
|
@@ -130,7 +137,11 @@ export default function () {
|
|
|
130
137
|
Vue.component('apply-stair-kaifa', (resolve) => { require(['./components/product/Report/apply-stair-kaifa.vue'], resolve) })
|
|
131
138
|
// 用户管理部未通气月报表
|
|
132
139
|
Vue.component('apply-stair-wtongqi', (resolve) => { require(['./components/product/Report/apply-stair-wtongqi.vue'], resolve) })
|
|
140
|
+
// 用户管理部未通气月报表
|
|
141
|
+
Vue.component('apply-gongchengbu', (resolve) => { require(['./components/product/Report/gongchengbu.vue'], resolve) })
|
|
133
142
|
// 改线业务信息列表
|
|
134
143
|
Vue.component('apply-gai-xian-search', (resolve) => { require(['./components/product/ApplyGaiXianCharge/ApplyGaiXianChargeSearch.vue'], resolve) })
|
|
135
144
|
Vue.component('apply-gai-xian-list', (resolve) => { require(['./components/product/ApplyGaiXianCharge/ApplyGaiXianChargeList.vue'], resolve) })
|
|
145
|
+
// 流程时间环节
|
|
146
|
+
Vue.component('apply-defname-time', (resolve) => { require(['./components/product/List/ShowAllActivity.vue'], resolve) })
|
|
136
147
|
}
|
package/src/applyAndroid.js
CHANGED
|
@@ -40,6 +40,8 @@ export default function () {
|
|
|
40
40
|
Vue.component('show-build', (resolve) => { require(['./components/android/Task/ShiGongXinXi/ShowBuild'], resolve) })
|
|
41
41
|
// 施工信息控制层
|
|
42
42
|
Vue.component('app-build-user', (resolve) => { require(['./components/android/Task/ShiGongXinXi/AppShowBuildUser'], resolve) })
|
|
43
|
+
// 施工通气
|
|
44
|
+
Vue.component('app-build-ignition', (resolve) => { require(['./components/android/Task/BuildIgnition/BuildIgnition'], resolve) })
|
|
43
45
|
|
|
44
46
|
Vue.component('app-installation-details', (resolve) => { require(['./components/android/Process/Processes/AppInstallationDetails'], resolve) })
|
|
45
47
|
Vue.component('app-devices-management', (resolve) => { require(['./components/android/Process/Processes/AppDevicesManagement'], resolve) })
|
|
@@ -78,4 +80,8 @@ export default function () {
|
|
|
78
80
|
Vue.component('jing-li-shenhe', (resolve) => { require(['./components/android/Task/ShenHe/JingLiShenHe'], resolve) })
|
|
79
81
|
// 拆除用户管理
|
|
80
82
|
Vue.component('app-chai-chu-management', (resolve) => { require(['./components/android/Process/Processes/AppChaiChuInfo.vue'], resolve) })
|
|
83
|
+
// 管线建设
|
|
84
|
+
Vue.component('app-exploration-guan-xian', (resolve) => { require(['./components/android/Task/GuanXianJianShe/AppExplorationGuanXian.vue'], resolve) })
|
|
85
|
+
// 管线建设
|
|
86
|
+
Vue.component('app-guan-xian-cailiao', (resolve) => { require(['./components/android/Task/GuanXianJianShe/AppGuanXianCaiLiao.vue'], resolve) })
|
|
81
87
|
}
|
|
@@ -152,6 +152,21 @@ export default {
|
|
|
152
152
|
let condition = ''
|
|
153
153
|
|
|
154
154
|
condition = `f_blobid= '${this.headers.blodid}' `
|
|
155
|
+
if (this.headers.defname.indexOf('单位签字')){
|
|
156
|
+
let http = new HttpResetClass()
|
|
157
|
+
let data = {
|
|
158
|
+
tablename: 't_apply_sign',
|
|
159
|
+
condition: `f_process_id = '${this.headers.blodid}'`
|
|
160
|
+
}
|
|
161
|
+
let res = await http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/applySingleTable`, {data: data}, {
|
|
162
|
+
warnMsg: null,
|
|
163
|
+
resolveMsg: null
|
|
164
|
+
})
|
|
165
|
+
if (res.data.length > 0){
|
|
166
|
+
condition = `(f_blobid= '${this.headers.blodid}' or f_blobid= '${res.data[0].f_parent_process_id}')`
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
155
170
|
|
|
156
171
|
if (!isEmpty(this.useType)) {
|
|
157
172
|
condition += `and fusetype like '${this.useType}'`
|
|
@@ -160,7 +160,7 @@ export default {
|
|
|
160
160
|
title: '通气点火',
|
|
161
161
|
data () {
|
|
162
162
|
return {
|
|
163
|
-
model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/
|
|
163
|
+
model: new PagedList(`${this.$androidUtil.getProxyUrl()}/rs/sql/getWaitIgnitionTaskApp`, 20, null),
|
|
164
164
|
// model: new PagedList(`rs/sql/getWaitIgnitionTask`, 20, null),
|
|
165
165
|
criteriaShow: false,
|
|
166
166
|
tasknumber: 0,
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
:value.sync="model.endDate"
|
|
135
135
|
:format="'yyyy-MM-dd 23:59:59'"
|
|
136
136
|
:show-reset-button="true"
|
|
137
|
-
condition="f_apply_date <= '{}'">
|
|
137
|
+
condition="u.f_apply_date <= '{}'">
|
|
138
138
|
</datepicker>
|
|
139
139
|
</div>
|
|
140
140
|
</div>
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
<!-- </div>-->
|
|
156
156
|
<div class="row form-group text-right" style="">
|
|
157
157
|
<button class="btn btn-primary" v-if="$parent.$parent.defname === '现场勘察'" @click="$parent.$parent.changeSearch()">{{ $parent.$parent.showSupervisory ? '需整改' : '正常' }}</button>
|
|
158
|
-
<button class="btn btn-primary" v-if="$parent.$parent.defname === '工程队派工'" @click="$parent.$parent.changeSearch()">{{ $parent.$parent.showSupervisory ? '有纠纷' : '正常' }}</button>
|
|
158
|
+
<button class="btn btn-primary" v-if="$parent.$parent.defname === '工程队派工' || $parent.$parent.defname === '维修派单'" @click="$parent.$parent.changeSearch()">{{ $parent.$parent.showSupervisory ? '有纠纷' : '正常' }}</button>
|
|
159
159
|
<button class="btn btn-primary" @click="$parent.$parent.search()">查询</button>
|
|
160
160
|
<button class="btn btn-info" @click="$parent.$parent.clear()">清空</button>
|
|
161
161
|
<button class="btn" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"></button>
|