apply-clients 6.0.1 → 6.0.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/package.json +1 -1
- package/src/apply.js +219 -219
- package/src/components/apply/base/rightview/carddetail/ReduceFeeDetail2.vue +77 -77
- package/src/components/build/Install/ExplorationSelect.vue +308 -308
- package/src/components/build/Install/ExplorationUser.vue +315 -315
- package/src/components/build/Install/InstallFee/InstallInfoSelect.vue +232 -232
- package/src/components/build/Install/Process/CustomerEssentialInfo.vue +1 -1
- package/src/components/build/Install/Process/CustomerRecordMessage.vue +749 -749
- package/src/components/build/Install/Process/boneng/qbj_placecontroler.vue +1 -1
- package/src/components/build/Install/Process/zhongran/ZR_CustomerEssentialInfo.vue +1 -1
- package/src/components/build/Install/Process/zhongran/ZR_PlaceControler_print.vue +187 -187
- package/src/components/build/Install/monitor/SupervisoryControl.vue +178 -178
- package/.gradle/3.5.1/file-changes/last-build.bin +0 -0
- package/.gradle/3.5.1/taskHistory/taskHistory.lock +0 -0
- package/.gradle/buildOutputCleanup/built.bin +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
- package/yarn.lock +0 -8074
|
@@ -1,315 +1,315 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="col-sm-12" style="overflow:auto;">
|
|
3
|
-
<div class="tops" v-bind:style="{ height: topheight }">
|
|
4
|
-
<exploration-select v-ref:queryuser v-show="show"></exploration-select>
|
|
5
|
-
<modify-user-files v-ref:modifyuser v-show="!show"></modify-user-files>
|
|
6
|
-
</div>
|
|
7
|
-
<div v-show="showtotal" v-bind:style="{ height: botheight ,'margin-top':'20px','background-color' : '#ffffff' ,padding:'12px'}">
|
|
8
|
-
<div class="col-sm-9">
|
|
9
|
-
<tabset v-ref:tabs :close="false">
|
|
10
|
-
<tab :header='header'>
|
|
11
|
-
<route v-ref:route></route>
|
|
12
|
-
<route :comp="{name: 'customer-essential-info'}" v-if = "r1"></route>
|
|
13
|
-
</tab>
|
|
14
|
-
<tab header='户档案管理'>
|
|
15
|
-
<customer-record-message v-ref:record :selectdata="selectdata" :key="tittle1"
|
|
16
|
-
:edit = "true">
|
|
17
|
-
</customer-record-message>
|
|
18
|
-
</tab>
|
|
19
|
-
<tab header='表档案管理'>
|
|
20
|
-
<customer-record-message v-ref:record :selectdata="selectdata" :key="tittle2"
|
|
21
|
-
:edit = "true">
|
|
22
|
-
</customer-record-message>
|
|
23
|
-
</tab>
|
|
24
|
-
<tab header='材料信息'>
|
|
25
|
-
<customer-material-message v-ref:material :selectdata="selectdata"
|
|
26
|
-
:edit = "true">
|
|
27
|
-
</customer-material-message>
|
|
28
|
-
</tab>
|
|
29
|
-
<tab header='附件'>
|
|
30
|
-
<upload v-ref:file :blodid = "selectdata.f_process_id" :isusetype = "true" :isremark = "true" :defname="selectdata.defname"></upload>
|
|
31
|
-
<!--<customer-file v-ref:file :selectdata="selectdata"></customer-file>-->
|
|
32
|
-
</tab>
|
|
33
|
-
<tab header='设备新增' v-if="flagg">
|
|
34
|
-
<customer-equipment-message v-ref:equipment :selectdata="selectdata"
|
|
35
|
-
:edit = "true">
|
|
36
|
-
</customer-equipment-message>
|
|
37
|
-
</tab>
|
|
38
|
-
<!-- <tab header='设备管理' v-if="flagg">
|
|
39
|
-
<customer-record-message v-ref:record :selectdata="selectdata" :key="tittle3"></customer-record-message>
|
|
40
|
-
</tab>-->
|
|
41
|
-
</tabset>
|
|
42
|
-
</div>
|
|
43
|
-
<div class="col-sm-3" v-show="showbasic" v-if="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
44
|
-
<basicinfo v-ref:binfo :basic="selectdata"></basicinfo>
|
|
45
|
-
<placeprocessinfo v-ref:pinfo :palceinfo="selectdata"></placeprocessinfo >
|
|
46
|
-
<zr_placeprocessinfo v-ref:pinfo :palceinfo="selectdata"></zr_placeprocessinfo>
|
|
47
|
-
<zr_testdesigninfo v-ref:desinfo :palceinfo="selectdata"></zr_testdesigninfo>
|
|
48
|
-
<projeterprocessinfo v-ref:jinfo :projeterinfo="selectdata"></projeterprocessinfo>
|
|
49
|
-
<feenormeinfo v-ref:finfo :feen="selectdata"></feenormeinfo>
|
|
50
|
-
<contratprocessinfo v-ref:cinfo :contrat="selectdata"></contratprocessinfo>
|
|
51
|
-
<feeverifierinfo v-ref:fvinfo :feev="selectdata"></feeverifierinfo>
|
|
52
|
-
<meterprocessinfo v-ref:minfo :meter="selectdata"></meterprocessinfo>
|
|
53
|
-
<dispatchinginfo v-ref:dinfo :dispatch="selectdata"></dispatchinginfo>
|
|
54
|
-
<buildinfo v-ref:buinfo :build="selectdata"></buildinfo>
|
|
55
|
-
<receivinginfo v-ref:ninfo :note="selectdata"></receivinginfo>
|
|
56
|
-
<ignitioninfo v-ref:iinfo :ignition="selectdata"></ignitioninfo>
|
|
57
|
-
</div>
|
|
58
|
-
<div class="col-sm-3" v-show="showbasic" v-if="$login.f.f_fengongsi.includes('西昌')">
|
|
59
|
-
<zr_basicinfo v-ref:binfo :basic="selectdata"></zr_basicinfo>
|
|
60
|
-
<zr_placeprocessinfo v-ref:pinfo :palceinfo="selectdata"></zr_placeprocessinfo>
|
|
61
|
-
<zr_testdesigninfo v-ref:desinfo :palceinfo="selectdata"></zr_testdesigninfo>
|
|
62
|
-
<zr_feenormeinfo v-ref:finfo :feen="selectdata"></zr_feenormeinfo>
|
|
63
|
-
<zr_contratprocessinfo v-ref:cinfo :contrat="selectdata"></zr_contratprocessinfo>
|
|
64
|
-
<zr_materialplan_info v-ref:minfo :materialplan="selectdata"></zr_materialplan_info>
|
|
65
|
-
<zr_buildinfo v-ref:buinfo :build="selectdata"></zr_buildinfo>
|
|
66
|
-
<zr_dispatchinginfo v-ref:dinfo :dispatch="selectdata"></zr_dispatchinginfo>
|
|
67
|
-
<zr_receivinginfo v-ref:rinfo :note="selectdata"></zr_receivinginfo>
|
|
68
|
-
<zr_ignition_transfer_info v-ref:igntrinfo :transfer="selectdata"></zr_ignition_transfer_info>
|
|
69
|
-
<zr_ignitioninfo v-ref:iginfo :ignition="selectdata"></zr_ignitioninfo>
|
|
70
|
-
|
|
71
|
-
</div>
|
|
72
|
-
</div>
|
|
73
|
-
</div>
|
|
74
|
-
</template>
|
|
75
|
-
<script>
|
|
76
|
-
export default {
|
|
77
|
-
title: '报建流程',
|
|
78
|
-
data() {
|
|
79
|
-
return {
|
|
80
|
-
flagg: false,
|
|
81
|
-
show: true,
|
|
82
|
-
showbasic: false,
|
|
83
|
-
showtotal: false,
|
|
84
|
-
header: null,
|
|
85
|
-
selectdata: {},
|
|
86
|
-
botheight: '0%',
|
|
87
|
-
topheight: '100%',
|
|
88
|
-
tittle1:'户档案管理',
|
|
89
|
-
tittle2:'表档案管理',
|
|
90
|
-
tittle3:'设备管理'
|
|
91
|
-
}
|
|
92
|
-
},
|
|
93
|
-
events: {
|
|
94
|
-
'addactive'() {
|
|
95
|
-
this.$refs.queryuser.$refs.cp.$refs.cri.search()
|
|
96
|
-
this.hidden()
|
|
97
|
-
this.showbasic = true
|
|
98
|
-
this.topheight = '8%'
|
|
99
|
-
this.botheight = '82%'
|
|
100
|
-
},
|
|
101
|
-
'changeheight'() {
|
|
102
|
-
this.show = true
|
|
103
|
-
this.botheight = '0%'
|
|
104
|
-
if(this.$login.f.f_fengongsi.includes('西昌')){
|
|
105
|
-
if (this.$refs.binfo) {
|
|
106
|
-
this.$refs.binfo.flush()
|
|
107
|
-
this.$refs.pinfo.flush()
|
|
108
|
-
/* this.$refs.desinfo.flush()*/
|
|
109
|
-
this.$refs.finfo.flush()
|
|
110
|
-
this.$refs.cinfo.flush()
|
|
111
|
-
this.$refs.minfo.flush()
|
|
112
|
-
this.$refs.buinfo.flush()
|
|
113
|
-
this.$refs.dinfo.flush()
|
|
114
|
-
this.$refs.rinfo.flush()
|
|
115
|
-
this.$refs.rinfo.flush()
|
|
116
|
-
this.$refs.igntrinfo.flush()
|
|
117
|
-
this.$refs.iginfo.flush()
|
|
118
|
-
}
|
|
119
|
-
}else{
|
|
120
|
-
if (this.$refs.binfo) {
|
|
121
|
-
this.$refs.pinfo.flush()
|
|
122
|
-
this.$refs.jinfo.flush()
|
|
123
|
-
this.$refs.desinfo.flush()
|
|
124
|
-
this.$refs.binfo.flush()
|
|
125
|
-
this.$refs.finfo.flush()
|
|
126
|
-
this.$refs.cinfo.flush()
|
|
127
|
-
this.$refs.fvinfo.flush()
|
|
128
|
-
this.$refs.minfo.flush()
|
|
129
|
-
this.$refs.dinfo.flush()
|
|
130
|
-
this.$refs.buinfo.flush()
|
|
131
|
-
this.$refs.ninfo.flush()
|
|
132
|
-
this.$refs.iinfo.flush()
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
'check'(val) {
|
|
137
|
-
this.selectdata = ''
|
|
138
|
-
this.selectdata = val
|
|
139
|
-
console.log("节点编号:"+this.selectdata.actdefid,"节点名称:"+this.selectdata.defname)
|
|
140
|
-
this.topheight = '8%'
|
|
141
|
-
this.botheight = '82%'
|
|
142
|
-
this.$refs.queryuser.$refs.cp.$refs.grid.model.rows = [val]
|
|
143
|
-
this.$refs.queryuser.$refs.cp.pager = false
|
|
144
|
-
this.showbasic = true
|
|
145
|
-
let msg = val.defname
|
|
146
|
-
this.header = msg
|
|
147
|
-
this.hidden()
|
|
148
|
-
// 青白江博能燃气
|
|
149
|
-
if(this.$login.f.f_fengongsi.includes("博能")){
|
|
150
|
-
if(msg === '勘察登记'||msg === '方案材料预算'||msg === '方案材料预算审核'||msg === '方案材料预算经理审核'){
|
|
151
|
-
this.$refs.route.init('qbj_placecontroler', {selectdata: this.selectdata})
|
|
152
|
-
}
|
|
153
|
-
if (msg === '设计出图') {
|
|
154
|
-
this.$refs.route.init('projeterfigure', {selectdata: this.selectdata})
|
|
155
|
-
}
|
|
156
|
-
if (msg === '收费标准') {
|
|
157
|
-
this.$refs.route.init('feenorme', {selectdata: this.selectdata})
|
|
158
|
-
}
|
|
159
|
-
if (msg === '合同签订'
|
|
160
|
-
||msg === '合同审核'
|
|
161
|
-
||msg === '合同签订'
|
|
162
|
-
||msg === '录入材料'
|
|
163
|
-
||msg === '材料审核'
|
|
164
|
-
||msg === '材料申购'
|
|
165
|
-
) {
|
|
166
|
-
this.$refs.route.init('contratsigne', {selectdata: this.selectdata})
|
|
167
|
-
}
|
|
168
|
-
if (msg === '项目报价') {
|
|
169
|
-
this.$refs.route.init('feenormeandcontratsigne', {selectdata: this.selectdata})
|
|
170
|
-
}
|
|
171
|
-
if (msg === '收费审核') {
|
|
172
|
-
this.$refs.route.init('feeverifier', {selectdata: this.selectdata})
|
|
173
|
-
}
|
|
174
|
-
if (msg === '定表型'||msg === '现场勘察并项目初设'||msg === '方案审核') {
|
|
175
|
-
this.$refs.route.init('metertype', {selectdata: this.selectdata})
|
|
176
|
-
}
|
|
177
|
-
if (msg === '派工单'||msg === '工程派工并启动内验') {
|
|
178
|
-
this.$refs.route.init('dispatchingjob', {selectdata: this.selectdata})
|
|
179
|
-
}
|
|
180
|
-
if (msg === '施工') {
|
|
181
|
-
this.$refs.route.init('buildjob', {selectdata: this.selectdata})
|
|
182
|
-
}
|
|
183
|
-
if (msg === '竣工验收单'||msg ==='内部验收') {
|
|
184
|
-
this.$refs.route.init('receivingnote', {selectdata: this.selectdata})
|
|
185
|
-
}
|
|
186
|
-
if (msg === '通气点火'||msg === '停气碰口并外验通气'||msg === '工程结算'||msg === '资料归档') {
|
|
187
|
-
this.$refs.route.init('ignitionventilation', {selectdata: this.selectdata})
|
|
188
|
-
}
|
|
189
|
-
}else if(this.$login.f.f_fengongsi.includes("西昌")){
|
|
190
|
-
console.log('西昌')
|
|
191
|
-
if(msg === '测绘申请'){
|
|
192
|
-
console.log('测绘申请')
|
|
193
|
-
this.$refs.route.init('zr_placecontroler', {selectdata: this.selectdata,edit : true})//zr_placecontroler zr_receivingnote
|
|
194
|
-
}
|
|
195
|
-
if(msg === '测绘设计'){
|
|
196
|
-
console.log('测绘设计')
|
|
197
|
-
this.$refs.route.init('zr_testdesign', {selectdata: this.selectdata,edit : true})//zr_placecontroler zr_receivingnote
|
|
198
|
-
}
|
|
199
|
-
if (msg === '报建登记') {
|
|
200
|
-
console.log(this.selectdata)
|
|
201
|
-
this.$refs.route.init('zr_customeressentialinfo', {selectdata: this.selectdata,edit : true})
|
|
202
|
-
console.log(this.$refs.record)
|
|
203
|
-
}
|
|
204
|
-
if (msg === '收费标准制定') {
|
|
205
|
-
this.$refs.route.init('zr_feenorme', {selectdata: this.selectdata,edit : true})
|
|
206
|
-
}
|
|
207
|
-
if (msg === '合同签订') {
|
|
208
|
-
this.$refs.route.init('zr_contratsigne', {selectdata: this.selectdata,edit : true})
|
|
209
|
-
}
|
|
210
|
-
if (msg === '材料计划') {
|
|
211
|
-
this.$refs.route.init('zr_materialplan', {selectdata: this.selectdata,edit : true})
|
|
212
|
-
}
|
|
213
|
-
if (msg === '材料审核') {
|
|
214
|
-
this.$refs.route.init('zr_materialplanexamine', {selectdata: this.selectdata,edit : true})
|
|
215
|
-
}
|
|
216
|
-
if (msg === '施工报建') {
|
|
217
|
-
this.$refs.route.init('zr_construction', {selectdata: this.selectdata,edit : true})
|
|
218
|
-
}
|
|
219
|
-
if (msg === '工程施工任务书') {
|
|
220
|
-
this.$refs.route.init('zr_dispatchingjob', {selectdata: this.selectdata,edit : true})
|
|
221
|
-
}
|
|
222
|
-
if (msg === '竣工验收') {
|
|
223
|
-
this.$refs.route.init('zr_receivingnote', {selectdata: this.selectdata,edit : true})
|
|
224
|
-
}
|
|
225
|
-
if (msg === '资料移交') {
|
|
226
|
-
this.$refs.route.init('zr_ignitionventilation_transfer', {selectdata: this.selectdata,edit : true})
|
|
227
|
-
}
|
|
228
|
-
if (msg === '通气点火') {
|
|
229
|
-
this.$refs.route.init('zr_ignitionventilation', {selectdata: this.selectdata,edit : true})
|
|
230
|
-
}
|
|
231
|
-
} else {
|
|
232
|
-
if(msg === '勘探登记'){
|
|
233
|
-
this.$refs.route.init('qbj_placecontroler', {selectdata: this.selectdata})
|
|
234
|
-
}
|
|
235
|
-
if (msg === '报建登记') {
|
|
236
|
-
console.log(this.selectdata)
|
|
237
|
-
this.$refs.route.init('customer-essential-info', {selectdata: this.selectdata})
|
|
238
|
-
console.log(this.$refs.record)
|
|
239
|
-
}
|
|
240
|
-
if (msg === '现场勘探') {
|
|
241
|
-
this.$refs.route.init('placecontroler', {selectdata: this.selectdata})
|
|
242
|
-
}
|
|
243
|
-
if (msg === '设计出图') {
|
|
244
|
-
this.$refs.route.init('projeterfigure', {selectdata: this.selectdata})
|
|
245
|
-
}
|
|
246
|
-
if (msg === '收费标准') {
|
|
247
|
-
this.$refs.route.init('feenorme', {selectdata: this.selectdata})
|
|
248
|
-
}
|
|
249
|
-
if (msg === '合同签订'
|
|
250
|
-
||msg === '合同审核'
|
|
251
|
-
||msg === '合同签订'
|
|
252
|
-
||msg === '录入材料'
|
|
253
|
-
||msg === '材料审核'
|
|
254
|
-
||msg === '材料申购'
|
|
255
|
-
) {
|
|
256
|
-
this.$refs.route.init('contratsigne', {selectdata: this.selectdata})
|
|
257
|
-
}
|
|
258
|
-
if (msg === '项目报价并录入合同价格') {
|
|
259
|
-
this.$refs.route.init('feenormeandcontratsigne', {selectdata: this.selectdata})
|
|
260
|
-
}
|
|
261
|
-
if (msg === '收费审核') {
|
|
262
|
-
this.$refs.route.init('feeverifier', {selectdata: this.selectdata})
|
|
263
|
-
}
|
|
264
|
-
if (msg === '定表型'||msg === '现场勘察并项目初设'||msg === '方案审核') {
|
|
265
|
-
this.$refs.route.init('metertype', {selectdata: this.selectdata})
|
|
266
|
-
}
|
|
267
|
-
if (msg === '派工单'||msg === '工程派工并启动内验') {
|
|
268
|
-
this.$refs.route.init('dispatchingjob', {selectdata: this.selectdata})
|
|
269
|
-
}
|
|
270
|
-
if (msg === '施工') {
|
|
271
|
-
this.$refs.route.init('buildjob', {selectdata: this.selectdata})
|
|
272
|
-
}
|
|
273
|
-
if (msg === '竣工验收单'||msg ==='内部验收') {
|
|
274
|
-
this.$refs.route.init('receivingnote', {selectdata: this.selectdata})
|
|
275
|
-
}
|
|
276
|
-
if (msg === '通气点火'||msg === '停气碰口并外验通气'||msg === '工程结算'||msg === '资料归档') {
|
|
277
|
-
this.$refs.route.init('ignitionventilation', {selectdata: this.selectdata})
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
},
|
|
281
|
-
'selfsearch'() {
|
|
282
|
-
this.$refs.queryuser.$refs.cp.$refs.cri.search()
|
|
283
|
-
},
|
|
284
|
-
'close'() {
|
|
285
|
-
// this.selectdata = ''
|
|
286
|
-
this.hidden()
|
|
287
|
-
this.showtotal = false
|
|
288
|
-
this.topheight = '100%'
|
|
289
|
-
this.botheight = '0%'
|
|
290
|
-
this.$refs.queryuser.$refs.cp.pager = true
|
|
291
|
-
}
|
|
292
|
-
},
|
|
293
|
-
methods: {
|
|
294
|
-
hidden() {
|
|
295
|
-
this.showtotal = true
|
|
296
|
-
},
|
|
297
|
-
close() {
|
|
298
|
-
this.hidden()
|
|
299
|
-
this.topheight = '100%'
|
|
300
|
-
this.botheight = '0%'
|
|
301
|
-
}
|
|
302
|
-
},
|
|
303
|
-
watch: {
|
|
304
|
-
'selectdata'(val) {
|
|
305
|
-
console.log('selectdata:', val)
|
|
306
|
-
},
|
|
307
|
-
'selectdata.f_customer_type'() {
|
|
308
|
-
if (this.selectdata.f_customer_type == '企业') {
|
|
309
|
-
this.flagg = true
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
},
|
|
313
|
-
|
|
314
|
-
}
|
|
315
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="col-sm-12" style="overflow:auto;">
|
|
3
|
+
<div class="tops" v-bind:style="{ height: topheight }">
|
|
4
|
+
<exploration-select v-ref:queryuser v-show="show"></exploration-select>
|
|
5
|
+
<modify-user-files v-ref:modifyuser v-show="!show"></modify-user-files>
|
|
6
|
+
</div>
|
|
7
|
+
<div v-show="showtotal" v-bind:style="{ height: botheight ,'margin-top':'20px','background-color' : '#ffffff' ,padding:'12px'}">
|
|
8
|
+
<div class="col-sm-9">
|
|
9
|
+
<tabset v-ref:tabs :close="false">
|
|
10
|
+
<tab :header='header'>
|
|
11
|
+
<route v-ref:route></route>
|
|
12
|
+
<route :comp="{name: 'customer-essential-info'}" v-if = "r1"></route>
|
|
13
|
+
</tab>
|
|
14
|
+
<tab header='户档案管理'>
|
|
15
|
+
<customer-record-message v-ref:record :selectdata="selectdata" :key="tittle1"
|
|
16
|
+
:edit = "true">
|
|
17
|
+
</customer-record-message>
|
|
18
|
+
</tab>
|
|
19
|
+
<tab header='表档案管理'>
|
|
20
|
+
<customer-record-message v-ref:record :selectdata="selectdata" :key="tittle2"
|
|
21
|
+
:edit = "true">
|
|
22
|
+
</customer-record-message>
|
|
23
|
+
</tab>
|
|
24
|
+
<tab header='材料信息'>
|
|
25
|
+
<customer-material-message v-ref:material :selectdata="selectdata"
|
|
26
|
+
:edit = "true">
|
|
27
|
+
</customer-material-message>
|
|
28
|
+
</tab>
|
|
29
|
+
<tab header='附件'>
|
|
30
|
+
<upload v-ref:file :blodid = "selectdata.f_process_id" :isusetype = "true" :isremark = "true" :defname="selectdata.defname"></upload>
|
|
31
|
+
<!--<customer-file v-ref:file :selectdata="selectdata"></customer-file>-->
|
|
32
|
+
</tab>
|
|
33
|
+
<tab header='设备新增' v-if="flagg">
|
|
34
|
+
<customer-equipment-message v-ref:equipment :selectdata="selectdata"
|
|
35
|
+
:edit = "true">
|
|
36
|
+
</customer-equipment-message>
|
|
37
|
+
</tab>
|
|
38
|
+
<!-- <tab header='设备管理' v-if="flagg">
|
|
39
|
+
<customer-record-message v-ref:record :selectdata="selectdata" :key="tittle3"></customer-record-message>
|
|
40
|
+
</tab>-->
|
|
41
|
+
</tabset>
|
|
42
|
+
</div>
|
|
43
|
+
<div class="col-sm-3" v-show="showbasic" v-if="!this.$login.f.f_fengongsi.includes('西昌')">
|
|
44
|
+
<basicinfo v-ref:binfo :basic="selectdata"></basicinfo>
|
|
45
|
+
<placeprocessinfo v-ref:pinfo :palceinfo="selectdata"></placeprocessinfo >
|
|
46
|
+
<zr_placeprocessinfo v-ref:pinfo :palceinfo="selectdata"></zr_placeprocessinfo>
|
|
47
|
+
<zr_testdesigninfo v-ref:desinfo :palceinfo="selectdata"></zr_testdesigninfo>
|
|
48
|
+
<projeterprocessinfo v-ref:jinfo :projeterinfo="selectdata"></projeterprocessinfo>
|
|
49
|
+
<feenormeinfo v-ref:finfo :feen="selectdata"></feenormeinfo>
|
|
50
|
+
<contratprocessinfo v-ref:cinfo :contrat="selectdata"></contratprocessinfo>
|
|
51
|
+
<feeverifierinfo v-ref:fvinfo :feev="selectdata"></feeverifierinfo>
|
|
52
|
+
<meterprocessinfo v-ref:minfo :meter="selectdata"></meterprocessinfo>
|
|
53
|
+
<dispatchinginfo v-ref:dinfo :dispatch="selectdata"></dispatchinginfo>
|
|
54
|
+
<buildinfo v-ref:buinfo :build="selectdata"></buildinfo>
|
|
55
|
+
<receivinginfo v-ref:ninfo :note="selectdata"></receivinginfo>
|
|
56
|
+
<ignitioninfo v-ref:iinfo :ignition="selectdata"></ignitioninfo>
|
|
57
|
+
</div>
|
|
58
|
+
<div class="col-sm-3" v-show="showbasic" v-if="$login.f.f_fengongsi.includes('西昌')">
|
|
59
|
+
<zr_basicinfo v-ref:binfo :basic="selectdata"></zr_basicinfo>
|
|
60
|
+
<zr_placeprocessinfo v-ref:pinfo :palceinfo="selectdata"></zr_placeprocessinfo>
|
|
61
|
+
<zr_testdesigninfo v-ref:desinfo :palceinfo="selectdata"></zr_testdesigninfo>
|
|
62
|
+
<zr_feenormeinfo v-ref:finfo :feen="selectdata"></zr_feenormeinfo>
|
|
63
|
+
<zr_contratprocessinfo v-ref:cinfo :contrat="selectdata"></zr_contratprocessinfo>
|
|
64
|
+
<zr_materialplan_info v-ref:minfo :materialplan="selectdata"></zr_materialplan_info>
|
|
65
|
+
<zr_buildinfo v-ref:buinfo :build="selectdata"></zr_buildinfo>
|
|
66
|
+
<zr_dispatchinginfo v-ref:dinfo :dispatch="selectdata"></zr_dispatchinginfo>
|
|
67
|
+
<zr_receivinginfo v-ref:rinfo :note="selectdata"></zr_receivinginfo>
|
|
68
|
+
<zr_ignition_transfer_info v-ref:igntrinfo :transfer="selectdata"></zr_ignition_transfer_info>
|
|
69
|
+
<zr_ignitioninfo v-ref:iginfo :ignition="selectdata"></zr_ignitioninfo>
|
|
70
|
+
|
|
71
|
+
</div>
|
|
72
|
+
</div>
|
|
73
|
+
</div>
|
|
74
|
+
</template>
|
|
75
|
+
<script>
|
|
76
|
+
export default {
|
|
77
|
+
title: '报建流程',
|
|
78
|
+
data() {
|
|
79
|
+
return {
|
|
80
|
+
flagg: false,
|
|
81
|
+
show: true,
|
|
82
|
+
showbasic: false,
|
|
83
|
+
showtotal: false,
|
|
84
|
+
header: null,
|
|
85
|
+
selectdata: {},
|
|
86
|
+
botheight: '0%',
|
|
87
|
+
topheight: '100%',
|
|
88
|
+
tittle1:'户档案管理',
|
|
89
|
+
tittle2:'表档案管理',
|
|
90
|
+
tittle3:'设备管理'
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
events: {
|
|
94
|
+
'addactive'() {
|
|
95
|
+
this.$refs.queryuser.$refs.cp.$refs.cri.search()
|
|
96
|
+
this.hidden()
|
|
97
|
+
this.showbasic = true
|
|
98
|
+
this.topheight = '8%'
|
|
99
|
+
this.botheight = '82%'
|
|
100
|
+
},
|
|
101
|
+
'changeheight'() {
|
|
102
|
+
this.show = true
|
|
103
|
+
this.botheight = '0%'
|
|
104
|
+
if(this.$login.f.f_fengongsi.includes('西昌')){
|
|
105
|
+
if (this.$refs.binfo) {
|
|
106
|
+
this.$refs.binfo.flush()
|
|
107
|
+
this.$refs.pinfo.flush()
|
|
108
|
+
/* this.$refs.desinfo.flush()*/
|
|
109
|
+
this.$refs.finfo.flush()
|
|
110
|
+
this.$refs.cinfo.flush()
|
|
111
|
+
this.$refs.minfo.flush()
|
|
112
|
+
this.$refs.buinfo.flush()
|
|
113
|
+
this.$refs.dinfo.flush()
|
|
114
|
+
this.$refs.rinfo.flush()
|
|
115
|
+
this.$refs.rinfo.flush()
|
|
116
|
+
this.$refs.igntrinfo.flush()
|
|
117
|
+
this.$refs.iginfo.flush()
|
|
118
|
+
}
|
|
119
|
+
}else{
|
|
120
|
+
if (this.$refs.binfo) {
|
|
121
|
+
this.$refs.pinfo.flush()
|
|
122
|
+
this.$refs.jinfo.flush()
|
|
123
|
+
this.$refs.desinfo.flush()
|
|
124
|
+
this.$refs.binfo.flush()
|
|
125
|
+
this.$refs.finfo.flush()
|
|
126
|
+
this.$refs.cinfo.flush()
|
|
127
|
+
this.$refs.fvinfo.flush()
|
|
128
|
+
this.$refs.minfo.flush()
|
|
129
|
+
this.$refs.dinfo.flush()
|
|
130
|
+
this.$refs.buinfo.flush()
|
|
131
|
+
this.$refs.ninfo.flush()
|
|
132
|
+
this.$refs.iinfo.flush()
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
'check'(val) {
|
|
137
|
+
this.selectdata = ''
|
|
138
|
+
this.selectdata = val
|
|
139
|
+
console.log("节点编号:"+this.selectdata.actdefid,"节点名称:"+this.selectdata.defname)
|
|
140
|
+
this.topheight = '8%'
|
|
141
|
+
this.botheight = '82%'
|
|
142
|
+
this.$refs.queryuser.$refs.cp.$refs.grid.model.rows = [val]
|
|
143
|
+
this.$refs.queryuser.$refs.cp.pager = false
|
|
144
|
+
this.showbasic = true
|
|
145
|
+
let msg = val.defname
|
|
146
|
+
this.header = msg
|
|
147
|
+
this.hidden()
|
|
148
|
+
// 青白江博能燃气
|
|
149
|
+
if(this.$login.f.f_fengongsi.includes("博能")){
|
|
150
|
+
if(msg === '勘察登记'||msg === '方案材料预算'||msg === '方案材料预算审核'||msg === '方案材料预算经理审核'){
|
|
151
|
+
this.$refs.route.init('qbj_placecontroler', {selectdata: this.selectdata})
|
|
152
|
+
}
|
|
153
|
+
if (msg === '设计出图') {
|
|
154
|
+
this.$refs.route.init('projeterfigure', {selectdata: this.selectdata})
|
|
155
|
+
}
|
|
156
|
+
if (msg === '收费标准') {
|
|
157
|
+
this.$refs.route.init('feenorme', {selectdata: this.selectdata})
|
|
158
|
+
}
|
|
159
|
+
if (msg === '合同签订'
|
|
160
|
+
||msg === '合同审核'
|
|
161
|
+
||msg === '合同签订'
|
|
162
|
+
||msg === '录入材料'
|
|
163
|
+
||msg === '材料审核'
|
|
164
|
+
||msg === '材料申购'
|
|
165
|
+
) {
|
|
166
|
+
this.$refs.route.init('contratsigne', {selectdata: this.selectdata})
|
|
167
|
+
}
|
|
168
|
+
if (msg === '项目报价') {
|
|
169
|
+
this.$refs.route.init('feenormeandcontratsigne', {selectdata: this.selectdata})
|
|
170
|
+
}
|
|
171
|
+
if (msg === '收费审核') {
|
|
172
|
+
this.$refs.route.init('feeverifier', {selectdata: this.selectdata})
|
|
173
|
+
}
|
|
174
|
+
if (msg === '定表型'||msg === '现场勘察并项目初设'||msg === '方案审核') {
|
|
175
|
+
this.$refs.route.init('metertype', {selectdata: this.selectdata})
|
|
176
|
+
}
|
|
177
|
+
if (msg === '派工单'||msg === '工程派工并启动内验') {
|
|
178
|
+
this.$refs.route.init('dispatchingjob', {selectdata: this.selectdata})
|
|
179
|
+
}
|
|
180
|
+
if (msg === '施工') {
|
|
181
|
+
this.$refs.route.init('buildjob', {selectdata: this.selectdata})
|
|
182
|
+
}
|
|
183
|
+
if (msg === '竣工验收单'||msg ==='内部验收') {
|
|
184
|
+
this.$refs.route.init('receivingnote', {selectdata: this.selectdata})
|
|
185
|
+
}
|
|
186
|
+
if (msg === '通气点火'||msg === '停气碰口并外验通气'||msg === '工程结算'||msg === '资料归档') {
|
|
187
|
+
this.$refs.route.init('ignitionventilation', {selectdata: this.selectdata})
|
|
188
|
+
}
|
|
189
|
+
}else if(this.$login.f.f_fengongsi.includes("西昌")){
|
|
190
|
+
console.log('西昌')
|
|
191
|
+
if(msg === '测绘申请'){
|
|
192
|
+
console.log('测绘申请')
|
|
193
|
+
this.$refs.route.init('zr_placecontroler', {selectdata: this.selectdata,edit : true})//zr_placecontroler zr_receivingnote
|
|
194
|
+
}
|
|
195
|
+
if(msg === '测绘设计'){
|
|
196
|
+
console.log('测绘设计')
|
|
197
|
+
this.$refs.route.init('zr_testdesign', {selectdata: this.selectdata,edit : true})//zr_placecontroler zr_receivingnote
|
|
198
|
+
}
|
|
199
|
+
if (msg === '报建登记') {
|
|
200
|
+
console.log(this.selectdata)
|
|
201
|
+
this.$refs.route.init('zr_customeressentialinfo', {selectdata: this.selectdata,edit : true})
|
|
202
|
+
console.log(this.$refs.record)
|
|
203
|
+
}
|
|
204
|
+
if (msg === '收费标准制定') {
|
|
205
|
+
this.$refs.route.init('zr_feenorme', {selectdata: this.selectdata,edit : true})
|
|
206
|
+
}
|
|
207
|
+
if (msg === '合同签订') {
|
|
208
|
+
this.$refs.route.init('zr_contratsigne', {selectdata: this.selectdata,edit : true})
|
|
209
|
+
}
|
|
210
|
+
if (msg === '材料计划') {
|
|
211
|
+
this.$refs.route.init('zr_materialplan', {selectdata: this.selectdata,edit : true})
|
|
212
|
+
}
|
|
213
|
+
if (msg === '材料审核') {
|
|
214
|
+
this.$refs.route.init('zr_materialplanexamine', {selectdata: this.selectdata,edit : true})
|
|
215
|
+
}
|
|
216
|
+
if (msg === '施工报建') {
|
|
217
|
+
this.$refs.route.init('zr_construction', {selectdata: this.selectdata,edit : true})
|
|
218
|
+
}
|
|
219
|
+
if (msg === '工程施工任务书') {
|
|
220
|
+
this.$refs.route.init('zr_dispatchingjob', {selectdata: this.selectdata,edit : true})
|
|
221
|
+
}
|
|
222
|
+
if (msg === '竣工验收') {
|
|
223
|
+
this.$refs.route.init('zr_receivingnote', {selectdata: this.selectdata,edit : true})
|
|
224
|
+
}
|
|
225
|
+
if (msg === '资料移交') {
|
|
226
|
+
this.$refs.route.init('zr_ignitionventilation_transfer', {selectdata: this.selectdata,edit : true})
|
|
227
|
+
}
|
|
228
|
+
if (msg === '通气点火') {
|
|
229
|
+
this.$refs.route.init('zr_ignitionventilation', {selectdata: this.selectdata,edit : true})
|
|
230
|
+
}
|
|
231
|
+
} else {
|
|
232
|
+
if(msg === '勘探登记'){
|
|
233
|
+
this.$refs.route.init('qbj_placecontroler', {selectdata: this.selectdata})
|
|
234
|
+
}
|
|
235
|
+
if (msg === '报建登记') {
|
|
236
|
+
console.log(this.selectdata)
|
|
237
|
+
this.$refs.route.init('customer-essential-info', {selectdata: this.selectdata})
|
|
238
|
+
console.log(this.$refs.record)
|
|
239
|
+
}
|
|
240
|
+
if (msg === '现场勘探') {
|
|
241
|
+
this.$refs.route.init('placecontroler', {selectdata: this.selectdata})
|
|
242
|
+
}
|
|
243
|
+
if (msg === '设计出图') {
|
|
244
|
+
this.$refs.route.init('projeterfigure', {selectdata: this.selectdata})
|
|
245
|
+
}
|
|
246
|
+
if (msg === '收费标准') {
|
|
247
|
+
this.$refs.route.init('feenorme', {selectdata: this.selectdata})
|
|
248
|
+
}
|
|
249
|
+
if (msg === '合同签订'
|
|
250
|
+
||msg === '合同审核'
|
|
251
|
+
||msg === '合同签订'
|
|
252
|
+
||msg === '录入材料'
|
|
253
|
+
||msg === '材料审核'
|
|
254
|
+
||msg === '材料申购'
|
|
255
|
+
) {
|
|
256
|
+
this.$refs.route.init('contratsigne', {selectdata: this.selectdata})
|
|
257
|
+
}
|
|
258
|
+
if (msg === '项目报价并录入合同价格') {
|
|
259
|
+
this.$refs.route.init('feenormeandcontratsigne', {selectdata: this.selectdata})
|
|
260
|
+
}
|
|
261
|
+
if (msg === '收费审核') {
|
|
262
|
+
this.$refs.route.init('feeverifier', {selectdata: this.selectdata})
|
|
263
|
+
}
|
|
264
|
+
if (msg === '定表型'||msg === '现场勘察并项目初设'||msg === '方案审核') {
|
|
265
|
+
this.$refs.route.init('metertype', {selectdata: this.selectdata})
|
|
266
|
+
}
|
|
267
|
+
if (msg === '派工单'||msg === '工程派工并启动内验') {
|
|
268
|
+
this.$refs.route.init('dispatchingjob', {selectdata: this.selectdata})
|
|
269
|
+
}
|
|
270
|
+
if (msg === '施工') {
|
|
271
|
+
this.$refs.route.init('buildjob', {selectdata: this.selectdata})
|
|
272
|
+
}
|
|
273
|
+
if (msg === '竣工验收单'||msg ==='内部验收') {
|
|
274
|
+
this.$refs.route.init('receivingnote', {selectdata: this.selectdata})
|
|
275
|
+
}
|
|
276
|
+
if (msg === '通气点火'||msg === '停气碰口并外验通气'||msg === '工程结算'||msg === '资料归档') {
|
|
277
|
+
this.$refs.route.init('ignitionventilation', {selectdata: this.selectdata})
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
'selfsearch'() {
|
|
282
|
+
this.$refs.queryuser.$refs.cp.$refs.cri.search()
|
|
283
|
+
},
|
|
284
|
+
'close'() {
|
|
285
|
+
// this.selectdata = ''
|
|
286
|
+
this.hidden()
|
|
287
|
+
this.showtotal = false
|
|
288
|
+
this.topheight = '100%'
|
|
289
|
+
this.botheight = '0%'
|
|
290
|
+
this.$refs.queryuser.$refs.cp.pager = true
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
methods: {
|
|
294
|
+
hidden() {
|
|
295
|
+
this.showtotal = true
|
|
296
|
+
},
|
|
297
|
+
close() {
|
|
298
|
+
this.hidden()
|
|
299
|
+
this.topheight = '100%'
|
|
300
|
+
this.botheight = '0%'
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
watch: {
|
|
304
|
+
'selectdata'(val) {
|
|
305
|
+
console.log('selectdata:', val)
|
|
306
|
+
},
|
|
307
|
+
'selectdata.f_customer_type'() {
|
|
308
|
+
if (this.selectdata.f_customer_type == '企业') {
|
|
309
|
+
this.flagg = true
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
|
|
314
|
+
}
|
|
315
|
+
</script>
|