apply-clients 5.0.35-51 → 5.0.35-54

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.
@@ -0,0 +1,3575 @@
1
+ <template>
2
+ <div class="repair-bg auto" id="repair-first" style="padding-bottom:5px;overflow:auto">
3
+ <!--<div class="app-botton" @click="back()">-->
4
+ <!--<span class="glyphicon glyphicon-menu-left">返回</span>-->
5
+ <!--</div>-->
6
+ <!-- <back-page :need-back='true' @flag="back()"></back-page>-->
7
+ <div class="bq-parent">
8
+ <blockquote style="padding: 10px 10px;margin: 0 0 0px;color: #499edf;border-left-color: #499edf;font-size: 16px">
9
+ <div class=" row">
10
+ 待办工程<span v-if="rows">({{ rows.length }}单)</span>
11
+ <span v-if="!rows">(暂无待处理工程单)</span>
12
+ <img @click="search" src="../../assets/shuaxindaiban1.png" style="width: 40px;padding: 5px; float:right">
13
+ <div style="margin-right: 3%;float:right;height: 30px " class="button_spacing"
14
+ :class="{'button_shrink_top':criteriaShow,'button_shrink_bottom':!criteriaShow}" @click="hidden()"></div>
15
+
16
+ </div>
17
+
18
+ </blockquote>
19
+
20
+ </div>
21
+ <div style="height: auto;width: 100%" v-if="criteriaShow">
22
+ <div class="row app-row">
23
+ <div class="col-xs-4">
24
+ <img src="../../assets/用户姓名.png" style="width: 20px;margin-bottom: 5px" alt="">
25
+ <label class="font text-left">用户姓名:</label>
26
+ </div>
27
+ <div class="col-xs-8">
28
+ <input class="search_input input-font" v-model=model.f_user_name condition="f_user_name like '%{}%'"/>
29
+ </div>
30
+ </div>
31
+ <div class="row app-row">
32
+ <div class="col-xs-4">
33
+ <img src="../../assets/用户地址.png" style="width: 20px;margin-bottom: 5px" alt="">
34
+ <label class="font text-left">用户地址:</label>
35
+ </div>
36
+ <div class="col-xs-8">
37
+ <input class="search_input input-font" v-model=model.f_address condition="f_user_name like '%{}%'"/>
38
+ </div>
39
+ </div>
40
+ <div class="row app-row">
41
+ <div class="col-xs-4">
42
+ <img src="../../assets/用户电话.png" style="width: 20px;margin-bottom: 5px" alt="">
43
+ <label class="font text-left">用户电话:</label>
44
+ </div>
45
+ <div class="col-xs-8">
46
+ <input class="search_input input-font" v-model=model.f_phone condition="f_user_name like '%{}%'"/>
47
+ </div>
48
+ </div>
49
+ </div>
50
+ <div class="panel panel-default repair-info-content auto">
51
+ <div class="panel-body">
52
+ <div class="panel panel-default well" v-for="row in rows">
53
+ <div class="panel-body bg-info" style="padding: 10px">
54
+ <div class="row form-group">
55
+ <div class="col-sm-12 col-xs-12 col-md-12">
56
+ <div class="row">
57
+ <div :class="{'text-danger': row.f_remindersign}" class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
58
+ 报建编号: {{ row.f_apply_num }}<!--<span v-if="row.f_remindersign">(催单)</span>-->
59
+ </div>
60
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
61
+ 用户姓名: {{ row.f_user_name }}
62
+ </div>
63
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
64
+ 用户类型: {{ row.f_user_type }}
65
+ </div>
66
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
67
+ 用户地址: {{ row.f_address }}
68
+ </div>
69
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
70
+ 用户电话: {{ row.f_phone }}
71
+ <img src="../../assets/telphonesend.png" style="width: 12px;"
72
+ @click.stop.prevent='makeAPhoneCall(row.f_phone)'>
73
+ </div>
74
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
75
+ 流程状态: {{ row.defname }}
76
+ </div>
77
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
78
+ 报建类型: {{ row.f_apply_type }}
79
+ </div>
80
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
81
+ 报建日期: {{ row.f_apply_date }}
82
+ </div>
83
+
84
+ </div>
85
+ </div>
86
+ <div class="col-sm-12 col-xs-12 col-md-12">
87
+ <button type="button" name="button" class="btn btn-primary"
88
+ style="background-color:#499edf;float: right" @click="selected(row)">立即处理
89
+ </button>
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </div>
95
+ </div>
96
+ </div>
97
+ </template>
98
+ <script>
99
+ import Vue from 'vue'
100
+ import {HttpResetClass} from 'vue-client'
101
+ import * as Util from "../Util";
102
+
103
+ export default {
104
+ title: '待办报建列表',
105
+ data() {
106
+ return {
107
+ // rows: Object
108
+ rows: [],
109
+ model: {},
110
+ criteriaShow: false,
111
+ editshow: false,
112
+ row: {
113
+ type: Object,
114
+ default: {}
115
+ }
116
+ }
117
+ },
118
+ props: {
119
+ sourcet: {
120
+ type: String,
121
+ default: '横屏'
122
+ }
123
+ },
124
+ methods: {
125
+ hidden() {
126
+ this.criteriaShow = !this.criteriaShow
127
+ },
128
+ selected(row) {
129
+ var _this = this
130
+ var pardate = {
131
+ _this: _this,
132
+ title: '工程待办详情',
133
+ safe: true
134
+ }
135
+ _this.$dispatch('gotoson', pardate)
136
+ row.canedit = true
137
+ if (_this.sourcet == '横屏') {
138
+ _this.$goto('placecontrolerapp', {row: row}, 'self', this.search)
139
+ } else {
140
+ _this.$goto('placecontrolerapp', {row: row}, 'self', this.search)
141
+ }
142
+ },
143
+ back() {
144
+ let _this = this
145
+ _this.$back()
146
+ },
147
+ search() {
148
+ // app正式运行程序
149
+ console.log('------app开始查询本地代办工单------')
150
+ var condition = "defname in ('现场勘查','验收','通气','现场勘查定价','安装通气')"
151
+
152
+ console.log(JSON.stringify(this.model))
153
+ if (this.model.f_user_name) {
154
+ condition += ` and f_user_name like '%${this.model.f_user_name}%'`
155
+ }
156
+ if (this.model.f_address) {
157
+ condition += ` and f_address like '%${this.model.f_address}%'`
158
+ }
159
+ if (this.model.f_phone) {
160
+ condition += ` and f_phone like '%${this.model.f_phone}%'`
161
+ }
162
+ console.log(`login_user_id=>>>${Vue.user.id}`)
163
+ console.log(`分公司=>>>${Vue.user.f_fengongsi}`)
164
+ var param = {
165
+ condition: condition,
166
+ condValue: [],
167
+ data: {"id": Vue.user.id, "fengongsi": Vue.user.f_fengongsi, f_product_id: 1}
168
+ }
169
+
170
+ console.log(`param=>>>${JSON.stringify(param)}`)
171
+ let http = new HttpResetClass()
172
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/checkuser`, {data: param}).then(res => {
173
+ console.log(`前台本地报建代办工单查询结果data=>>>${JSON.stringify(res.data)}`)
174
+ if (res.data) {
175
+ this.rows = res.data
176
+ } else {
177
+ this.rows = []
178
+ }
179
+ })
180
+ },
181
+ makeAPhoneCall(phoneNumber) {
182
+ this.$androidUtil.makeAPhoneCall(phoneNumber)
183
+ },
184
+ upload() {
185
+ this.$goto('up-load')
186
+ },
187
+ addactive(modify) {
188
+ this.$workflow_vue.start_activity = modify
189
+ let http = new HttpResetClass()
190
+ let res = http.load('POST',`${this.$androidUtil.getProxyUrl()}/rs/logic/ApplyGetProcessID`,{data:{filename:this.$workflow_vue.workflow_xmlfilename,start_activity:this.$workflow_vue.start_activity}}, {resolveMsg: null, rejectMsg: '获取流程ID失败,请联系开发人员'})
191
+ let data = {
192
+ f_process_id: res.data.f_process_id,
193
+ f_product_id: res.data.f_product_id,
194
+ start_activity:this.$workflow_vue.start_activity,
195
+ user:Vue.user
196
+ }
197
+ http.load('POST',`${this.$androidUtil.getProxyUrl()}/rs/logic/newaddApplyproduct`,{data:data}, {resolveMsg: null, rejectMsg: '转发失败,请联系开发人员'})
198
+ },
199
+ },
200
+ ready() {
201
+ this.search()
202
+ var _this = this;
203
+ this.timeoutHandle = window.setInterval(function () {
204
+ _this.search()
205
+ }, 6000000)//60000
206
+ },
207
+ created() {
208
+ // var result = HostApp.readLocalFile('workflow_apply.json')
209
+ // if (result.code == 500) {
210
+ // this.$showMessage('获取流程配置文件失败,请联系系统管理员')
211
+ // return
212
+ // }
213
+ //
214
+ // var data = JSON.parse(result)
215
+ // console.log(data)
216
+
217
+
218
+
219
+
220
+
221
+ var data={
222
+ "start_activitys": [
223
+ "集体报装申请",
224
+ "报装申请",
225
+ "踏勘、建立工程编号"
226
+ ],
227
+ "start_activity": "",
228
+ "workflow_xmlfilename": "鄂州报建流程",
229
+ "activitys": [
230
+ {
231
+ "title": "集体报装申请",
232
+ "tables": [
233
+ "t_apply"
234
+ ],
235
+ "fields": [
236
+ {
237
+ "label": "申请时间",
238
+ "type": "datepicker",
239
+ "bootstraped": "col-sm-3",
240
+ "field": "f_application_time",
241
+ "readonly": true,
242
+ "required": false,
243
+ "hidden": true
244
+ },
245
+ {
246
+ "label": "报装来源",
247
+ "type": "select",
248
+ "bootstraped": "col-sm-3",
249
+ "field": "f_apply_source",
250
+ "readonly": true,
251
+ "required": true,
252
+ "hidden": false,
253
+ "options": [
254
+ {
255
+ "label": "燃气系统",
256
+ "value": "燃气系统"
257
+ },
258
+ {
259
+ "label": "微信",
260
+ "value": "微信"
261
+ }
262
+ ]
263
+ },
264
+ {
265
+ "label": "联系人",
266
+ "type": "input",
267
+ "bootstraped": "col-sm-3",
268
+ "field": "f_user_name",
269
+ "placeholder": "请输入",
270
+ "readonly": false,
271
+ "disabled": false,
272
+ "required": true
273
+ },
274
+ {
275
+ "label": "电话号码",
276
+ "type": "tel",
277
+ "bootstraped": "col-sm-3",
278
+ "field": "f_phone",
279
+ "placeholder": "请输入",
280
+ "required": true
281
+ },
282
+ {
283
+ "label": "业务类型",
284
+ "type": "select",
285
+ "bootstraped": "col-sm-3",
286
+ "field": "f_work_type",
287
+ "readonly": true,
288
+ "required": true,
289
+ "options": [
290
+ {
291
+ "label": "新报装",
292
+ "value": "新报装"
293
+ },
294
+ {
295
+ "label": "改管",
296
+ "value": "改管"
297
+ }
298
+ ]
299
+ },
300
+ {
301
+ "label": "报建类型",
302
+ "type": "input",
303
+ "bootstraped": "col-sm-3",
304
+ "field": "f_apply_type",
305
+ "placeholder": "请输入",
306
+ "default": "集体报建",
307
+ "hidden": true,
308
+ "required": true
309
+ },
310
+ {
311
+ "label": "用户类型",
312
+ "type": "select",
313
+ "bootstraped": "col-sm-3",
314
+ "field": "f_user_type",
315
+ "required": true
316
+ },
317
+ {
318
+ "label": "县/区",
319
+ "type": "select",
320
+ "bootstraped": "col-sm-3",
321
+ "field": "f_area",
322
+ "placeholder": "请输入",
323
+ "required": true
324
+ },
325
+ {
326
+ "label": "街道名称",
327
+ "type": "select",
328
+ "bootstraped": "col-sm-3",
329
+ "field": "f_street",
330
+ "placeholder": "请输入",
331
+ "required": true
332
+ },
333
+ {
334
+ "label": "小区名称",
335
+ "type": "select",
336
+ "bootstraped": "col-sm-3",
337
+ "field": "f_residential_area",
338
+ "placeholder": "请输入",
339
+ "disabled": false,
340
+ "required": true
341
+ },
342
+ {
343
+ "label": "小区地址",
344
+ "type": "input",
345
+ "bootstraped": "col-sm-3",
346
+ "field": "f_area_address",
347
+ "read-only": true,
348
+ "hidden": false
349
+ },
350
+ {
351
+ "label": "勘查人员",
352
+ "type": "input",
353
+ "hidden": true,
354
+ "bootstraped": "col-sm-3",
355
+ "field": "f_survey_name",
356
+ "default": "无",
357
+ "display": false,
358
+ "readonly": true,
359
+ "required": false
360
+ },
361
+ {
362
+ "label": "项目名称",
363
+ "type": "input",
364
+ "bootstraped": "col-sm-3",
365
+ "field": "f_entry_name",
366
+ "placeholder": "请输入",
367
+ "readonly": false,
368
+ "required": false
369
+ },
370
+ {
371
+ "label": "地址",
372
+ "type": "input",
373
+ "bootstraped": "col-sm-12",
374
+ "field": "f_address",
375
+ "placeholder": "请输入",
376
+ "disabled": false,
377
+ "readonly": false
378
+ },
379
+ {
380
+ "label": "备注",
381
+ "type": "textarea",
382
+ "bootstraped": "col-sm-12",
383
+ "default": "",
384
+ "field": "t_remarks",
385
+ "placeholder": "",
386
+ "rows": 2,
387
+ "readonly": false,
388
+ "required": false
389
+ }
390
+ ],
391
+ "buttons": [
392
+ {
393
+ "button_name": "提交"
394
+ }
395
+ ]
396
+ },
397
+ {
398
+ "title": "集体现场勘查人员分配",
399
+ "tables": [
400
+ "t_apply"
401
+ ],
402
+ "fields": [
403
+ {
404
+ "label": "联系人",
405
+ "type": "input",
406
+ "bootstraped": "col-sm-3",
407
+ "field": "f_user_name",
408
+ "placeholder": "请输入",
409
+ "readonly": false,
410
+ "value": null,
411
+ "disabled": false,
412
+ "required": true
413
+ },
414
+ {
415
+ "label": "报建类型",
416
+ "type": "select",
417
+ "bootstraped": "col-sm-3",
418
+ "field": "f_apply_type",
419
+ "placeholder": "请输入",
420
+ "readonly": true,
421
+ "disabled": false,
422
+ "required": true,
423
+ "value": null,
424
+ "hidden": true,
425
+ "options": [
426
+ ]
427
+ },
428
+ {
429
+ "label": "电话号码",
430
+ "type": "tel",
431
+ "bootstraped": "col-sm-3",
432
+ "field": "f_phone",
433
+ "placeholder": "请输入",
434
+ "readonly": false,
435
+ "value": null,
436
+ "disabled": false,
437
+ "required": true
438
+ },
439
+ {
440
+ "label": "用户类型",
441
+ "type": "select",
442
+ "bootstraped": "col-sm-3",
443
+ "field": "f_user_type",
444
+ "placeholder": "请输入",
445
+ "readonly": true,
446
+ "disabled": false,
447
+ "required": true,
448
+ "value": null,
449
+ "options": [
450
+ ]
451
+ },
452
+ {
453
+ "label": "勘察人员",
454
+ "type": "select",
455
+ "bootstraped": "col-sm-3",
456
+ "field": "f_survey_name",
457
+ "placeholder": "请输入",
458
+ "readonly": false,
459
+ "value": "默认",
460
+ "disabled": false,
461
+ "required": true
462
+ },
463
+ {
464
+ "label": "安装户数",
465
+ "type": "number",
466
+ "bootstraped": "col-sm-3",
467
+ "field": "f_install_num",
468
+ "placeholder": "请输入",
469
+ "readonly": false,
470
+ "value": 1,
471
+ "default": 1,
472
+ "disabled": false,
473
+ "required": true
474
+ },
475
+ {
476
+ "label": "勘查日期",
477
+ "type": "datepicker",
478
+ "bootstraped": "col-sm-3",
479
+ "field": "f_survey_time",
480
+ "readonly": true
481
+ },
482
+ {
483
+ "label": "县/区",
484
+ "type": "select",
485
+ "bootstraped": "col-sm-3",
486
+ "field": "f_area",
487
+ "placeholder": "请输入",
488
+ "required": true
489
+ },
490
+ {
491
+ "label": "街道名称",
492
+ "type": "input",
493
+ "bootstraped": "col-sm-3",
494
+ "field": "f_street",
495
+ "placeholder": "请输入",
496
+ "required": true
497
+ },
498
+ {
499
+ "label": "小区名称",
500
+ "type": "input",
501
+ "bootstraped": "col-sm-3",
502
+ "field": "f_residential_area",
503
+ "placeholder": "请输入",
504
+ "disabled": false,
505
+ "required": false
506
+ },
507
+ {
508
+ "label": "地址",
509
+ "type": "input",
510
+ "bootstraped": "col-sm-12",
511
+ "field": "f_address",
512
+ "placeholder": "请输入",
513
+ "disabled": false,
514
+ "readonly": true
515
+ },
516
+ {
517
+ "label": "项目名称",
518
+ "type": "input",
519
+ "bootstraped": "col-sm-3",
520
+ "field": "f_entry_name",
521
+ "placeholder": "请输入",
522
+ "readonly": false,
523
+ "value": null,
524
+ "disabled": false,
525
+ "required": false
526
+ },
527
+ {
528
+ "label": "备注",
529
+ "type": "textarea",
530
+ "bootstraped": "col-sm-12",
531
+ "field": "t_remarks",
532
+ "placeholder": "",
533
+ "rows": 2,
534
+ "readonly": false,
535
+ "required": false
536
+ }
537
+ ],
538
+ "buttons": [
539
+ {
540
+ "button_name": "保存"
541
+ },
542
+ {
543
+ "button_name": "提交"
544
+ }
545
+ ]
546
+ },
547
+ {
548
+ "title": "现场勘查",
549
+ "mobile": "true",
550
+ "tables": [
551
+ "t_apply"
552
+ ],
553
+ "fields": [
554
+ {
555
+ "label": "实际可安装用户数",
556
+ "bootstraped": "col-sm-3",
557
+ "type": "input",
558
+ "field": "f_install_num",
559
+ "default": 1,
560
+ "required": false
561
+ },
562
+ {
563
+ "label": "缴费户数",
564
+ "type": "input",
565
+ "bootstraped": "col-sm-3",
566
+ "field": "f_payfee_num",
567
+ "default": 1,
568
+ "required": false
569
+ },
570
+ {
571
+ "label": "气价名称",
572
+ "bootstraped": "col-sm-3",
573
+ "type": "select",
574
+ "field": "f_stair_price_name",
575
+ "placeholder": "请选择",
576
+ "required": true
577
+ },
578
+ {
579
+ "label": "勘察人员",
580
+ "bootstraped": "col-sm-3",
581
+ "type": "select",
582
+ "field": "f_survey_name",
583
+ "placeholder": "请选择",
584
+ "required": true
585
+ },
586
+ {
587
+ "label": "勘查结果",
588
+ "bootstraped": "col-sm-3",
589
+ "type": "select",
590
+ "field": "f_checksurp_remark",
591
+ "default": "请选择",
592
+ "required": true,
593
+ "options": [
594
+ {
595
+ "label": "合格",
596
+ "value": "合格"
597
+ },
598
+ {
599
+ "label": "不合格",
600
+ "value": "不合格"
601
+ }
602
+ ]
603
+ },
604
+ {
605
+ "label": "支付账户",
606
+ "bootstraped": "col-sm-3",
607
+ "type": "select",
608
+ "field": "f_payment_account",
609
+ "default": "请选择",
610
+ "required": true,
611
+ "options": [
612
+ {
613
+ "label": "安泰",
614
+ "value": "安泰"
615
+ },
616
+ {
617
+ "label": "欣泰",
618
+ "value": "欣泰"
619
+ }
620
+ ]
621
+ },
622
+ {
623
+ "label": "勘察日期",
624
+ "bootstraped": "col-sm-3",
625
+ "type": "datepicker",
626
+ "field": "f_survey_time",
627
+ "placeholder": "请选择",
628
+ "required": true
629
+ },
630
+ {
631
+ "label": "勘察意见",
632
+ "type": "textarea",
633
+ "field": "f_survey_remarks",
634
+ "rows": 1
635
+ },
636
+ {
637
+ "label": "勘察回复",
638
+ "type": "textarea",
639
+ "field": "f_survey_reply",
640
+ "rows": 3
641
+ }
642
+ ],
643
+ "buttons": [
644
+ {
645
+ "button_name": "保存"
646
+ },
647
+ {
648
+ "button_name": "提交"
649
+ }
650
+ ]
651
+ },
652
+ {
653
+ "title": "设计报价",
654
+ "tables": [
655
+ "t_apply"
656
+ ],
657
+ "fields": [
658
+ {
659
+ "label": "是否设计出图",
660
+ "type": "select",
661
+ "bootstraped": "col-sm-3",
662
+ "field": "f_isdesign",
663
+ "required": true,
664
+ "options": [
665
+ {
666
+ "label": "是",
667
+ "value": "是"
668
+ },
669
+ {
670
+ "label": "否",
671
+ "value": "否"
672
+ }
673
+ ]
674
+ },
675
+ {
676
+ "label": "设计派工日期",
677
+ "type": "datepicker",
678
+ "bootstraped": "col-sm-3",
679
+ "field": "f_design_start_date",
680
+ "placeholder": "请选择",
681
+ "disabled": false,
682
+ "required": false
683
+ },
684
+ {
685
+ "label": "预定完成日期",
686
+ "bootstraped": "col-sm-3",
687
+ "type": "datepicker",
688
+ "field": "f_design_end_date",
689
+ "placeholder": "请选择",
690
+ "disabled": false,
691
+ "required": false
692
+ },
693
+ {
694
+ "label": "设计人员",
695
+ "type": "input",
696
+ "bootstraped": "col-sm-3",
697
+ "field": "f_designer",
698
+ "placeholder": "请输入",
699
+ "readonly": false,
700
+ "disabled": false,
701
+ "required": false
702
+ },
703
+ {
704
+ "label": "气表品牌",
705
+ "type": "select",
706
+ "bootstraped": "col-sm-3",
707
+ "field": "f_meter_brand",
708
+ "placeholder": "请选择",
709
+ "required": false
710
+ },
711
+ {
712
+ "label": "气表型号",
713
+ "type": "select",
714
+ "bootstraped": "col-sm-3",
715
+ "field": "f_meter_style",
716
+ "placeholder": "请选择",
717
+ "required": true
718
+ },
719
+ {
720
+ "label": "左右表",
721
+ "type": "select",
722
+ "bootstraped": "col-sm-3",
723
+ "field": "f_aroundmeter",
724
+ "readonly": true,
725
+ "required": false
726
+ },
727
+ {
728
+ "label": "工程安装费",
729
+ "type": "input",
730
+ "bootstraped": "col-sm-3",
731
+ "field": "f_construction_cost",
732
+ "required": false,
733
+ "hidden": true
734
+ },
735
+ {
736
+ "label": "材料费",
737
+ "type": "input",
738
+ "bootstraped": "col-sm-3",
739
+ "field": "f_material_cost",
740
+ "required": false,
741
+ "hidden": true
742
+ },
743
+ {
744
+ "label": "人工费",
745
+ "type": "input",
746
+ "bootstraped": "col-sm-3",
747
+ "field": "f_labor_cost",
748
+ "required": false,
749
+ "hidden": true
750
+ },
751
+ {
752
+ "label": "费用合计",
753
+ "type": "input",
754
+ "bootstraped": "col-sm-3",
755
+ "field": "f_total_cost",
756
+ "readonly": false,
757
+ "required": true,
758
+ "hidden": false
759
+ }
760
+ ],
761
+ "buttons": [
762
+ {
763
+ "button_name": "保存"
764
+ },
765
+ {
766
+ "button_name": "提交",
767
+ "button_event": "合同信息"
768
+ }
769
+ ]
770
+ },
771
+ {
772
+ "title": "报价审核",
773
+ "tables": [
774
+ "t_apply"
775
+ ],
776
+ "fields": [
777
+ {
778
+ "label": "工程安装费",
779
+ "type": "input",
780
+ "bootstraped": "col-sm-3",
781
+ "field": "f_construction_cost",
782
+ "readonly": true,
783
+ "required": false,
784
+ "hidden": true
785
+ },
786
+ {
787
+ "label": "材料费",
788
+ "type": "input",
789
+ "bootstraped": "col-sm-3",
790
+ "field": "f_material_cost",
791
+ "readonly": true,
792
+ "required": false,
793
+ "hidden": true
794
+ },
795
+ {
796
+ "label": "人工费",
797
+ "type": "input",
798
+ "bootstraped": "col-sm-3",
799
+ "field": "f_labor_cost",
800
+ "readonly": true,
801
+ "required": false,
802
+ "hidden": true
803
+ },
804
+ {
805
+ "label": "费用合计",
806
+ "type": "input",
807
+ "bootstraped": "col-sm-3",
808
+ "field": "f_total_cost",
809
+ "readonly": true,
810
+ "required": true,
811
+ "hidden": false
812
+ },
813
+ {
814
+ "label": "未结总金额",
815
+ "type": "number",
816
+ "bootstraped": "col-sm-3",
817
+ "field": "f_unaccounts_money",
818
+ "placeholder": "请输入",
819
+ "readonly": true,
820
+ "value": null,
821
+ "disabled": false,
822
+ "required": false
823
+ },
824
+ {
825
+ "label": "图纸审核是否通过",
826
+ "type": "radio",
827
+ "bootstraped": "col-sm-6",
828
+ "field": "f_agree_install",
829
+ "disabled": false,
830
+ "required": true,
831
+ "items": [
832
+ {
833
+ "label": "是",
834
+ "value": "是"
835
+ },
836
+ {
837
+ "label": "否",
838
+ "value": "否"
839
+ }
840
+ ]
841
+ },
842
+ {
843
+ "label": "是否同意安装",
844
+ "type": "radio",
845
+ "bootstraped": "col-sm-6",
846
+ "field": "f_agree_install",
847
+ "disabled": false,
848
+ "required": true,
849
+ "items": [
850
+ {
851
+ "label": "是",
852
+ "value": "是"
853
+ },
854
+ {
855
+ "label": "否",
856
+ "value": "否"
857
+ }
858
+ ]
859
+ },
860
+ {
861
+ "label": "出图审核日期",
862
+ "type": "datepicker",
863
+ "field": "f_feecheck_date",
864
+ "placeholder": "请选择",
865
+ "required": false
866
+ },
867
+ {
868
+ "label": "收费审核日期",
869
+ "type": "datepicker",
870
+ "field": "f_feecheck_date",
871
+ "placeholder": "请选择",
872
+ "required": false
873
+ },
874
+ {
875
+ "label": "审核备注",
876
+ "type": "textarea",
877
+ "field": "f_feecheck_remarks",
878
+ "row": 3
879
+ }
880
+ ],
881
+ "buttons": [
882
+ {
883
+ "button_name": "保存"
884
+ },
885
+ {
886
+ "button_name": "提交"
887
+ }
888
+ ]
889
+ },
890
+ {
891
+ "title": "集体派单",
892
+ "tables": [
893
+ "t_apply"
894
+ ],
895
+ "fields": [
896
+ {
897
+ "label": "派工单号",
898
+ "type": "input",
899
+ "bootstraped": "col-sm-3",
900
+ "field": "f_dispatched_number",
901
+ "placeholder": "请输入",
902
+ "readonly": true,
903
+ "disabled": false,
904
+ "required": false
905
+ },
906
+ {
907
+ "label": "项目名称",
908
+ "type": "input",
909
+ "bootstraped": "col-sm-3",
910
+ "field": "f_entry_name",
911
+ "placeholder": "请输入",
912
+ "readonly": false,
913
+ "disabled": false,
914
+ "required": false
915
+ },
916
+ {
917
+ "label": "用气地点",
918
+ "type": "input",
919
+ "bootstraped": "col-sm-3",
920
+ "field": "f_address",
921
+ "placeholder": "请输入",
922
+ "readonly": false,
923
+ "disabled": false,
924
+ "required": false
925
+ },
926
+ {
927
+ "label": "申请时间",
928
+ "type": "datepicker",
929
+ "bootstraped": "col-sm-3",
930
+ "field": "f_application_time",
931
+ "readonly": true,
932
+ "required": false
933
+ },
934
+ {
935
+ "label": "联系人",
936
+ "type": "input",
937
+ "bootstraped": "col-sm-3",
938
+ "field": "f_user_name",
939
+ "placeholder": "请输入",
940
+ "readonly": false,
941
+ "disabled": false,
942
+ "required": true
943
+ },
944
+ {
945
+ "label": "联系电话",
946
+ "type": "input",
947
+ "bootstraped": "col-sm-3",
948
+ "field": "f_phone",
949
+ "placeholder": "请输入",
950
+ "readonly": false,
951
+ "disabled": false,
952
+ "required": false
953
+ },
954
+ {
955
+ "label": "合同总金额",
956
+ "type": "number",
957
+ "bootstraped": "col-sm-3",
958
+ "field": "f_total_cost",
959
+ "placeholder": "请输入",
960
+ "readonly": true,
961
+ "value": null,
962
+ "disabled": false,
963
+ "required": true
964
+ },
965
+ {
966
+ "label": "累计缴费金额",
967
+ "type": "number",
968
+ "bootstraped": "col-sm-3",
969
+ "field": "f_cumulative_money",
970
+ "placeholder": "请输入",
971
+ "readonly": true,
972
+ "disabled": false,
973
+ "required": true
974
+ },
975
+ {
976
+ "label": "未结总金额",
977
+ "type": "number",
978
+ "bootstraped": "col-sm-3",
979
+ "field": "f_unaccounts_money",
980
+ "placeholder": "请输入",
981
+ "readonly": true,
982
+ "value": null,
983
+ "disabled": false,
984
+ "required": false
985
+ },
986
+ {
987
+ "label": "发起时间",
988
+ "type": "datepicker",
989
+ "bootstraped": "col-sm-3",
990
+ "field": "f_Initiation_time",
991
+ "placeholder": "请输入",
992
+ "readonly": false,
993
+ "value": null,
994
+ "disabled": false,
995
+ "hide": true
996
+ },
997
+ {
998
+ "label": "施工单位",
999
+ "type": "select",
1000
+ "bootstraped": "col-sm-3",
1001
+ "field": "f_construction_unit",
1002
+ "required": false
1003
+ },
1004
+ {
1005
+ "label": "监理单位",
1006
+ "type": "select",
1007
+ "bootstraped": "col-sm-3",
1008
+ "field": "f_supervision_unit",
1009
+ "required": false
1010
+ },
1011
+ {
1012
+ "label": "设计单位",
1013
+ "type": "select",
1014
+ "bootstraped": "col-sm-3",
1015
+ "field": "f_design_unit",
1016
+ "required": false
1017
+ }
1018
+ ],
1019
+ "buttons": [
1020
+ {
1021
+ "button_name": "保存"
1022
+ },
1023
+ {
1024
+ "button_name": "提交",
1025
+ "button_person": {
1026
+ "button_event": "获取之前被下发人",
1027
+ "button_person_field": "f_survey_name"
1028
+ }
1029
+ }
1030
+ ]
1031
+ },
1032
+ {
1033
+ "title": "验收",
1034
+ "tables": [
1035
+ "t_apply"
1036
+ ],
1037
+ "fields": [
1038
+ {
1039
+ "label": "小区名称",
1040
+ "type": "select",
1041
+ "bootstraped": "col-sm-4",
1042
+ "field": "f_residential_area",
1043
+ "placeholder": "请输入",
1044
+ "disabled": false,
1045
+ "required": true
1046
+ },
1047
+ {
1048
+ "label": "小区地址",
1049
+ "type": "input",
1050
+ "bootstraped": "col-sm-4",
1051
+ "field": "f_area_address",
1052
+ "placeholder": "小区地址",
1053
+ "disabled": false,
1054
+ "required": true
1055
+ },
1056
+ {
1057
+ "label": "小区类型",
1058
+ "type": "select",
1059
+ "field": "f_area_type",
1060
+ "bootstraped": "col-sm-4",
1061
+ "disabled": false,
1062
+ "required": true,
1063
+ "options": [
1064
+ {
1065
+ "label": "新建小区",
1066
+ "value": "新建小区"
1067
+ },
1068
+ {
1069
+ "label": "旧住宅",
1070
+ "value": "旧住宅"
1071
+ }
1072
+ ]
1073
+ },
1074
+ {
1075
+ "label": "用户数量",
1076
+ "type": "input",
1077
+ "field": "f_area_type_user",
1078
+ "bootstraped": "col-sm-4",
1079
+ "placeholder": "请输入",
1080
+ "readonly": false,
1081
+ "value": null,
1082
+ "disabled": false,
1083
+ "required": true
1084
+ },
1085
+ {
1086
+ "label": "阀门井",
1087
+ "type": "input",
1088
+ "field": "f_valve_wells",
1089
+ "bootstraped": "col-sm-4",
1090
+ "placeholder": "",
1091
+ "readonly": false,
1092
+ "value": null,
1093
+ "disabled": false,
1094
+ "required": true
1095
+ },
1096
+ {
1097
+ "label": "调压设施",
1098
+ "type": "input",
1099
+ "bootstraped": "col-sm-4",
1100
+ "field": "f_regulating_facility",
1101
+ "placeholder": "",
1102
+ "readonly": false,
1103
+ "disabled": false,
1104
+ "required": true
1105
+ },
1106
+ {
1107
+ "label": "挂表位置",
1108
+ "type": "select",
1109
+ "bootstraped": "col-sm-4",
1110
+ "field": "f_position",
1111
+ "placeholder": "请输入",
1112
+ "disabled": false,
1113
+ "required": true,
1114
+ "options": [
1115
+ {
1116
+ "label": "户内挂表",
1117
+ "value": "户内挂表"
1118
+ },
1119
+ {
1120
+ "label": "户外挂表",
1121
+ "value": "户外挂表"
1122
+ }
1123
+ ]
1124
+ },
1125
+ {
1126
+ "label": "金属波纹软管灶具",
1127
+ "type": "input",
1128
+ "bootstraped": "col-sm-4",
1129
+ "field": "f_metal_bellows",
1130
+ "placeholder": "请输入",
1131
+ "disabled": false,
1132
+ "required": true
1133
+ },
1134
+ {
1135
+ "label": "金属波纹软管热水器",
1136
+ "type": "input",
1137
+ "bootstraped": "col-sm-4",
1138
+ "field": "f_metal_bellows_hot",
1139
+ "placeholder": "请输入",
1140
+ "disabled": false,
1141
+ "required": true
1142
+ },
1143
+ {
1144
+ "label": "表具",
1145
+ "type": "select",
1146
+ "bootstraped": "col-sm-4",
1147
+ "field": "f_meter_brand",
1148
+ "placeholder": "请输入",
1149
+ "disabled": false,
1150
+ "required": true
1151
+ },
1152
+ {
1153
+ "label": "表具安装户数",
1154
+ "type": "input",
1155
+ "bootstraped": "col-sm-4",
1156
+ "field": "f_meter_brand_install",
1157
+ "placeholder": "请输入",
1158
+ "disabled": false,
1159
+ "required": true
1160
+ },
1161
+ {
1162
+ "label": "表具未安装户数",
1163
+ "type": "input",
1164
+ "bootstraped": "col-sm-4",
1165
+ "field": "f_meter_brand_install_not",
1166
+ "placeholder": "请输入",
1167
+ "disabled": false,
1168
+ "required": true
1169
+ },
1170
+ {
1171
+ "label": "户内尾阀",
1172
+ "type": "select",
1173
+ "bootstraped": "col-sm-4",
1174
+ "field": "f_indoor_valve",
1175
+ "placeholder": "请输入",
1176
+ "disabled": false,
1177
+ "required": true,
1178
+ "options": [
1179
+ {
1180
+ "label": "F型双嘴尾阀",
1181
+ "value": "F型双嘴尾阀"
1182
+ },
1183
+ {
1184
+ "label": "双嘴尾阀",
1185
+ "value": "双嘴尾阀"
1186
+ },
1187
+ {
1188
+ "label": "单嘴尾阀",
1189
+ "value": "单嘴尾阀"
1190
+ }
1191
+ ]
1192
+ },
1193
+ {
1194
+ "label": "户内尾阀安装户数",
1195
+ "type": "input",
1196
+ "bootstraped": "col-sm-4",
1197
+ "field": "f_indoor_valve_install",
1198
+ "placeholder": "请输入",
1199
+ "disabled": false,
1200
+ "required": true
1201
+ },
1202
+ {
1203
+ "label": "户内尾阀未安装户数",
1204
+ "type": "input",
1205
+ "bootstraped": "col-sm-4",
1206
+ "field": "f_indoor_valve_install_not",
1207
+ "placeholder": "请输入",
1208
+ "disabled": false,
1209
+ "required": true
1210
+ },
1211
+ {
1212
+ "label": "户内自闭阀",
1213
+ "type": "select",
1214
+ "bootstraped": "col-sm-4",
1215
+ "field": "f_close_valve",
1216
+ "placeholder": "请输入",
1217
+ "disabled": false,
1218
+ "required": true,
1219
+ "options": [
1220
+ {
1221
+ "label": "是",
1222
+ "value": "是"
1223
+ },
1224
+ {
1225
+ "label": "否",
1226
+ "value": "否"
1227
+ }
1228
+ ]
1229
+ },
1230
+ {
1231
+ "label": "户内自闭阀安装户数",
1232
+ "type": "input",
1233
+ "bootstraped": "col-sm-4",
1234
+ "field": "f_close_valve_install",
1235
+ "placeholder": "请输入",
1236
+ "disabled": false,
1237
+ "required": true
1238
+ },
1239
+ {
1240
+ "label": "户内自闭阀未安装户数",
1241
+ "type": "input",
1242
+ "bootstraped": "col-sm-4",
1243
+ "field": "f_close_valve_install_not",
1244
+ "placeholder": "请输入",
1245
+ "disabled": false,
1246
+ "required": true
1247
+ },
1248
+ {
1249
+ "label": "验收人员",
1250
+ "type": "select",
1251
+ "bootstraped": "col-sm-4",
1252
+ "field": "f_checking_name",
1253
+ "disabled": false,
1254
+ "required": true
1255
+ },
1256
+ {
1257
+ "label": "验收备注",
1258
+ "type": "textarea",
1259
+ "field": "f_completed_remarks",
1260
+ "row": 6
1261
+ }
1262
+ ],
1263
+ "buttons": [
1264
+ {
1265
+ "button_name": "保存"
1266
+ },
1267
+ {
1268
+ "button_name": "提交"
1269
+ }
1270
+ ]
1271
+ },
1272
+ {
1273
+ "title": "通气",
1274
+ "tables": [
1275
+ "t_apply"
1276
+ ],
1277
+ "fields": [
1278
+ {
1279
+ "label": "小区名称",
1280
+ "type": "select",
1281
+ "bootstraped": "col-sm-3",
1282
+ "field": "f_residential_area",
1283
+ "placeholder": "请输入",
1284
+ "disabled": false,
1285
+ "required": true
1286
+ },
1287
+ {
1288
+ "label": "小区地址",
1289
+ "type": "input",
1290
+ "bootstraped": "col-sm-3",
1291
+ "field": "f_area_address",
1292
+ "placeholder": "小区地址",
1293
+ "disabled": false,
1294
+ "required": true
1295
+ },
1296
+ {
1297
+ "label": "小区类型",
1298
+ "type": "select",
1299
+ "field": "f_area_type",
1300
+ "bootstraped": "col-sm-3",
1301
+ "disabled": false,
1302
+ "required": true,
1303
+ "options": [
1304
+ {
1305
+ "label": "新建小区",
1306
+ "value": "新建小区"
1307
+ },
1308
+ {
1309
+ "label": "旧住宅",
1310
+ "value": "旧住宅"
1311
+ }
1312
+ ]
1313
+ },
1314
+ {
1315
+ "label": "用户数量",
1316
+ "type": "input",
1317
+ "field": "f_area_type_user",
1318
+ "bootstraped": "col-sm-3",
1319
+ "placeholder": "请输入",
1320
+ "readonly": false,
1321
+ "value": null,
1322
+ "disabled": false,
1323
+ "required": true
1324
+ },
1325
+ {
1326
+ "label": "阀门井",
1327
+ "type": "input",
1328
+ "field": "f_valve_wells",
1329
+ "bootstraped": "col-sm-3",
1330
+ "placeholder": "",
1331
+ "readonly": false,
1332
+ "value": null,
1333
+ "disabled": false,
1334
+ "required": true
1335
+ },
1336
+ {
1337
+ "label": "调压设施",
1338
+ "type": "input",
1339
+ "bootstraped": "col-sm-3",
1340
+ "field": "f_regulating_facility",
1341
+ "placeholder": "",
1342
+ "readonly": false,
1343
+ "disabled": false,
1344
+ "required": true
1345
+ },
1346
+ {
1347
+ "label": "挂表位置",
1348
+ "type": "select",
1349
+ "bootstraped": "col-sm-3",
1350
+ "field": "f_position",
1351
+ "placeholder": "请输入",
1352
+ "disabled": false,
1353
+ "required": true,
1354
+ "options": [
1355
+ {
1356
+ "label": "户内挂表",
1357
+ "value": "户内挂表"
1358
+ },
1359
+ {
1360
+ "label": "户外挂表",
1361
+ "value": "户外挂表"
1362
+ }
1363
+ ]
1364
+ },
1365
+ {
1366
+ "label": "金属波纹软管灶具",
1367
+ "type": "input",
1368
+ "bootstraped": "col-sm-3",
1369
+ "field": "f_metal_bellows",
1370
+ "placeholder": "请输入",
1371
+ "disabled": false,
1372
+ "required": true
1373
+ },
1374
+ {
1375
+ "label": "表具",
1376
+ "type": "select",
1377
+ "bootstraped": "col-sm-3",
1378
+ "field": "f_meter_brand",
1379
+ "placeholder": "请输入",
1380
+ "disabled": false,
1381
+ "required": true
1382
+ },
1383
+ {
1384
+ "label": "表具安装户数",
1385
+ "type": "input",
1386
+ "bootstraped": "col-sm-3",
1387
+ "field": "f_meter_brand_install",
1388
+ "placeholder": "请输入",
1389
+ "disabled": false,
1390
+ "required": true
1391
+ },
1392
+ {
1393
+ "label": "表具未安装户数",
1394
+ "type": "input",
1395
+ "bootstraped": "col-sm-3",
1396
+ "field": "f_meter_brand_install_not",
1397
+ "placeholder": "请输入",
1398
+ "disabled": false,
1399
+ "required": true
1400
+ },
1401
+ {
1402
+ "label": "金属波纹软管热水器",
1403
+ "type": "input",
1404
+ "bootstraped": "col-sm-3",
1405
+ "field": "f_metal_bellows_hot",
1406
+ "placeholder": "请输入",
1407
+ "disabled": false,
1408
+ "required": true
1409
+ },
1410
+ {
1411
+ "label": "户内尾阀",
1412
+ "type": "select",
1413
+ "bootstraped": "col-sm-3",
1414
+ "field": "f_indoor_valve",
1415
+ "placeholder": "请输入",
1416
+ "disabled": false,
1417
+ "required": true,
1418
+ "options": [
1419
+ {
1420
+ "label": "F型双嘴尾阀",
1421
+ "value": "F型双嘴尾阀"
1422
+ },
1423
+ {
1424
+ "label": "双嘴尾阀",
1425
+ "value": "双嘴尾阀"
1426
+ },
1427
+ {
1428
+ "label": "单嘴尾阀",
1429
+ "value": "单嘴尾阀"
1430
+ }
1431
+ ]
1432
+ },
1433
+ {
1434
+ "label": "户内尾阀安装户数",
1435
+ "type": "input",
1436
+ "bootstraped": "col-sm-3",
1437
+ "field": "f_indoor_valve_install",
1438
+ "placeholder": "请输入",
1439
+ "disabled": false,
1440
+ "required": true
1441
+ },
1442
+ {
1443
+ "label": "户内尾阀未安装户数",
1444
+ "type": "input",
1445
+ "bootstraped": "col-sm-3",
1446
+ "field": "f_indoor_valve_install_not",
1447
+ "placeholder": "请输入",
1448
+ "disabled": false,
1449
+ "required": true
1450
+ },
1451
+ {
1452
+ "label": "合同总金额",
1453
+ "type": "number",
1454
+ "bootstraped": "col-sm-3",
1455
+ "field": "f_total_cost",
1456
+ "placeholder": "请输入",
1457
+ "readonly": true,
1458
+ "value": null,
1459
+ "disabled": false,
1460
+ "required": true
1461
+ },
1462
+ {
1463
+ "label": "户内自闭阀",
1464
+ "type": "select",
1465
+ "bootstraped": "col-sm-3",
1466
+ "field": "f_close_valve",
1467
+ "placeholder": "请输入",
1468
+ "disabled": false,
1469
+ "required": true,
1470
+ "options": [
1471
+ {
1472
+ "label": "是",
1473
+ "value": "是"
1474
+ },
1475
+ {
1476
+ "label": "否",
1477
+ "value": "否"
1478
+ }
1479
+ ]
1480
+ },
1481
+ {
1482
+ "label": "户内自闭阀安装户数",
1483
+ "type": "input",
1484
+ "bootstraped": "col-sm-3",
1485
+ "field": "f_close_valve_install",
1486
+ "placeholder": "请输入",
1487
+ "disabled": false,
1488
+ "required": true
1489
+ },
1490
+ {
1491
+ "label": "户内自闭阀未安装户数",
1492
+ "type": "input",
1493
+ "bootstraped": "col-sm-3",
1494
+ "field": "f_close_valve_install_not",
1495
+ "placeholder": "请输入",
1496
+ "disabled": false,
1497
+ "required": true
1498
+ },
1499
+ {
1500
+ "label": "累计缴费金额",
1501
+ "type": "number",
1502
+ "bootstraped": "col-sm-3",
1503
+ "field": "f_cumulative_money",
1504
+ "placeholder": "请输入",
1505
+ "readonly": true,
1506
+ "disabled": false,
1507
+ "required": true
1508
+ },
1509
+ {
1510
+ "label": "切断压力",
1511
+ "type": "input",
1512
+ "bootstraped": "col-sm-3",
1513
+ "field": "f_qieduan_pressure",
1514
+ "required": false
1515
+ },
1516
+ {
1517
+ "label": "放散压力",
1518
+ "type": "input",
1519
+ "bootstraped": "col-sm-3",
1520
+ "field": "f_fangsan_pressure",
1521
+ "required": false
1522
+ },
1523
+ {
1524
+ "label": "工况压力",
1525
+ "type": "input",
1526
+ "bootstraped": "col-sm-3",
1527
+ "field": "f_gongkuang_pressure",
1528
+ "required": false
1529
+ },
1530
+ {
1531
+ "label": "未结总金额",
1532
+ "type": "number",
1533
+ "bootstraped": "col-sm-3",
1534
+ "field": "f_unaccounts_money",
1535
+ "placeholder": "请输入",
1536
+ "readonly": true,
1537
+ "value": null,
1538
+ "disabled": false,
1539
+ "required": false
1540
+ },
1541
+ {
1542
+ "label": "通气人员",
1543
+ "type": "input",
1544
+ "bootstraped": "col-sm-3",
1545
+ "field": "f_gas_name",
1546
+ "placeholder": "请输入",
1547
+ "readonly": false,
1548
+ "value": null,
1549
+ "disabled": false,
1550
+ "required": false
1551
+ },
1552
+ {
1553
+ "label": "通气时间",
1554
+ "type": "datepicker",
1555
+ "bootstraped": "col-sm-3",
1556
+ "field": "f_gas_date",
1557
+ "required": false,
1558
+ "disabled": false,
1559
+ "hide": true
1560
+ },
1561
+ {
1562
+ "label": "备注",
1563
+ "type": "textarea",
1564
+ "bootstraped": "col-sm-12",
1565
+ "field": "f_gas_remarks",
1566
+ "required": false
1567
+ }
1568
+ ],
1569
+ "buttons": [
1570
+ {
1571
+ "button_name": "保存"
1572
+ },
1573
+ {
1574
+ "button_name": "提交"
1575
+ }
1576
+ ]
1577
+ },
1578
+ {
1579
+ "title": "置换",
1580
+ "tables": [
1581
+ "t_apply"
1582
+ ],
1583
+ "fields": [
1584
+ {
1585
+ "label": "小区名称",
1586
+ "type": "select",
1587
+ "bootstraped": "col-sm-3",
1588
+ "field": "f_residential_area",
1589
+ "placeholder": "请输入",
1590
+ "disabled": false,
1591
+ "required": true
1592
+ },
1593
+ {
1594
+ "label": "小区地址",
1595
+ "type": "input",
1596
+ "bootstraped": "col-sm-3",
1597
+ "field": "f_area_address",
1598
+ "placeholder": "小区地址",
1599
+ "disabled": false,
1600
+ "required": true
1601
+ },
1602
+ {
1603
+ "label": "小区类型",
1604
+ "type": "select",
1605
+ "field": "f_area_type",
1606
+ "bootstraped": "col-sm-3",
1607
+ "disabled": false,
1608
+ "required": true,
1609
+ "options": [
1610
+ {
1611
+ "label": "新建小区",
1612
+ "value": "新建小区"
1613
+ },
1614
+ {
1615
+ "label": "旧住宅",
1616
+ "value": "旧住宅"
1617
+ }
1618
+ ]
1619
+ },
1620
+ {
1621
+ "label": "用户数量",
1622
+ "type": "input",
1623
+ "field": "f_area_type_user",
1624
+ "bootstraped": "col-sm-3",
1625
+ "placeholder": "请输入",
1626
+ "readonly": false,
1627
+ "value": null,
1628
+ "disabled": false,
1629
+ "required": true
1630
+ },
1631
+ {
1632
+ "label": "阀门井",
1633
+ "type": "input",
1634
+ "field": "f_valve_wells",
1635
+ "bootstraped": "col-sm-3",
1636
+ "placeholder": "",
1637
+ "readonly": false,
1638
+ "value": null,
1639
+ "disabled": false,
1640
+ "required": true
1641
+ },
1642
+ {
1643
+ "label": "调压设施",
1644
+ "type": "input",
1645
+ "bootstraped": "col-sm-3",
1646
+ "field": "f_regulating_facility",
1647
+ "placeholder": "",
1648
+ "readonly": false,
1649
+ "disabled": false,
1650
+ "required": true
1651
+ },
1652
+ {
1653
+ "label": "挂表位置",
1654
+ "type": "select",
1655
+ "bootstraped": "col-sm-3",
1656
+ "field": "f_position",
1657
+ "placeholder": "请输入",
1658
+ "disabled": false,
1659
+ "required": true,
1660
+ "options": [
1661
+ {
1662
+ "label": "户内挂表",
1663
+ "value": "户内挂表"
1664
+ },
1665
+ {
1666
+ "label": "户外挂表",
1667
+ "value": "户外挂表"
1668
+ }
1669
+ ]
1670
+ },
1671
+ {
1672
+ "label": "金属波纹软管灶具",
1673
+ "type": "input",
1674
+ "bootstraped": "col-sm-3",
1675
+ "field": "f_metal_bellows",
1676
+ "placeholder": "请输入",
1677
+ "disabled": false,
1678
+ "required": true
1679
+ },
1680
+ {
1681
+ "label": "表具",
1682
+ "type": "select",
1683
+ "bootstraped": "col-sm-3",
1684
+ "field": "f_meter_brand",
1685
+ "placeholder": "请输入",
1686
+ "disabled": false,
1687
+ "required": true
1688
+ },
1689
+ {
1690
+ "label": "表具安装户数",
1691
+ "type": "input",
1692
+ "bootstraped": "col-sm-3",
1693
+ "field": "f_meter_brand_install",
1694
+ "placeholder": "请输入",
1695
+ "disabled": false,
1696
+ "required": true
1697
+ },
1698
+ {
1699
+ "label": "表具未安装户数",
1700
+ "type": "input",
1701
+ "bootstraped": "col-sm-3",
1702
+ "field": "f_meter_brand_install_not",
1703
+ "placeholder": "请输入",
1704
+ "disabled": false,
1705
+ "required": true
1706
+ },
1707
+ {
1708
+ "label": "金属波纹软管热水器",
1709
+ "type": "input",
1710
+ "bootstraped": "col-sm-3",
1711
+ "field": "f_metal_bellows_hot",
1712
+ "placeholder": "请输入",
1713
+ "disabled": false,
1714
+ "required": true
1715
+ },
1716
+ {
1717
+ "label": "户内尾阀",
1718
+ "type": "select",
1719
+ "bootstraped": "col-sm-3",
1720
+ "field": "f_indoor_valve",
1721
+ "placeholder": "请输入",
1722
+ "disabled": false,
1723
+ "required": true,
1724
+ "options": [
1725
+ {
1726
+ "label": "F型双嘴尾阀",
1727
+ "value": "F型双嘴尾阀"
1728
+ },
1729
+ {
1730
+ "label": "双嘴尾阀",
1731
+ "value": "双嘴尾阀"
1732
+ },
1733
+ {
1734
+ "label": "单嘴尾阀",
1735
+ "value": "单嘴尾阀"
1736
+ }
1737
+ ]
1738
+ },
1739
+ {
1740
+ "label": "户内尾阀安装户数",
1741
+ "type": "input",
1742
+ "bootstraped": "col-sm-3",
1743
+ "field": "f_indoor_valve_install",
1744
+ "placeholder": "请输入",
1745
+ "disabled": false,
1746
+ "required": true
1747
+ },
1748
+ {
1749
+ "label": "户内尾阀未安装户数",
1750
+ "type": "input",
1751
+ "bootstraped": "col-sm-3",
1752
+ "field": "f_indoor_valve_install_not",
1753
+ "placeholder": "请输入",
1754
+ "disabled": false,
1755
+ "required": true
1756
+ },
1757
+ {
1758
+ "label": "合同总金额",
1759
+ "type": "number",
1760
+ "bootstraped": "col-sm-3",
1761
+ "field": "f_total_cost",
1762
+ "placeholder": "请输入",
1763
+ "readonly": true,
1764
+ "value": null,
1765
+ "disabled": false,
1766
+ "required": true
1767
+ },
1768
+ {
1769
+ "label": "户内自闭阀",
1770
+ "type": "select",
1771
+ "bootstraped": "col-sm-3",
1772
+ "field": "f_close_valve",
1773
+ "placeholder": "请输入",
1774
+ "disabled": false,
1775
+ "required": true,
1776
+ "options": [
1777
+ {
1778
+ "label": "是",
1779
+ "value": "是"
1780
+ },
1781
+ {
1782
+ "label": "否",
1783
+ "value": "否"
1784
+ }
1785
+ ]
1786
+ },
1787
+ {
1788
+ "label": "户内自闭阀安装户数",
1789
+ "type": "input",
1790
+ "bootstraped": "col-sm-3",
1791
+ "field": "f_close_valve_install",
1792
+ "placeholder": "请输入",
1793
+ "disabled": false,
1794
+ "required": true
1795
+ },
1796
+ {
1797
+ "label": "户内自闭阀未安装户数",
1798
+ "type": "input",
1799
+ "bootstraped": "col-sm-3",
1800
+ "field": "f_close_valve_install_not",
1801
+ "placeholder": "请输入",
1802
+ "disabled": false,
1803
+ "required": true
1804
+ },
1805
+ {
1806
+ "label": "累计缴费金额",
1807
+ "type": "number",
1808
+ "bootstraped": "col-sm-3",
1809
+ "field": "f_cumulative_money",
1810
+ "placeholder": "请输入",
1811
+ "readonly": true,
1812
+ "disabled": false,
1813
+ "required": true
1814
+ },
1815
+ {
1816
+ "label": "切断压力",
1817
+ "type": "input",
1818
+ "bootstraped": "col-sm-3",
1819
+ "field": "f_qieduan_pressure",
1820
+ "required": false
1821
+ },
1822
+ {
1823
+ "label": "放散压力",
1824
+ "type": "input",
1825
+ "bootstraped": "col-sm-3",
1826
+ "field": "f_fangsan_pressure",
1827
+ "required": false
1828
+ },
1829
+ {
1830
+ "label": "工况压力",
1831
+ "type": "input",
1832
+ "bootstraped": "col-sm-3",
1833
+ "field": "f_gongkuang_pressure",
1834
+ "required": false
1835
+ },
1836
+ {
1837
+ "label": "未结总金额",
1838
+ "type": "number",
1839
+ "bootstraped": "col-sm-3",
1840
+ "field": "f_unaccounts_money",
1841
+ "placeholder": "请输入",
1842
+ "readonly": true,
1843
+ "value": null,
1844
+ "disabled": false,
1845
+ "required": false
1846
+ },
1847
+ {
1848
+ "label": "通气日期",
1849
+ "type": "datepicker",
1850
+ "bootstraped": "col-sm-3",
1851
+ "field": "f_gas_date",
1852
+ "readonly": true,
1853
+ "required": false
1854
+ },
1855
+ {
1856
+ "label": "通气人员",
1857
+ "type": "input",
1858
+ "bootstraped": "col-sm-3",
1859
+ "field": "f_gas_name",
1860
+ "placeholder": "请输入",
1861
+ "readonly": false,
1862
+ "value": null,
1863
+ "disabled": false,
1864
+ "required": false
1865
+ },
1866
+ {
1867
+ "label": "通气备注",
1868
+ "type": "textarea",
1869
+ "bootstraped": "col-sm-12",
1870
+ "field": "f_gas_remarks",
1871
+ "rows": 2,
1872
+ "readonly": false
1873
+ }
1874
+ ],
1875
+ "buttons": [
1876
+ {
1877
+ "button_name": "保存"
1878
+ },
1879
+ {
1880
+ "button_name": "提交"
1881
+ }
1882
+ ]
1883
+ },
1884
+ {
1885
+ "title": "客服部确认",
1886
+ "tables": [
1887
+ "t_apply"
1888
+ ],
1889
+ "fields": [
1890
+ ],
1891
+ "buttons": [
1892
+ {
1893
+ "button_name": "保存"
1894
+ },
1895
+ {
1896
+ "button_name": "提交"
1897
+ }
1898
+ ]
1899
+ },
1900
+ {
1901
+ "title": "完工",
1902
+ "tables": [
1903
+ "t_apply"
1904
+ ],
1905
+ "fields": [
1906
+ ]
1907
+ },
1908
+ {
1909
+ "title": "报装申请",
1910
+ "tables": [
1911
+ "t_apply"
1912
+ ],
1913
+ "fields": [
1914
+ {
1915
+ "label": "申请时间",
1916
+ "type": "datepicker",
1917
+ "bootstraped": "col-sm-3",
1918
+ "field": "f_application_time",
1919
+ "readonly": true,
1920
+ "required": false,
1921
+ "hidden": true
1922
+ },
1923
+ {
1924
+ "label": "报装来源",
1925
+ "type": "select",
1926
+ "bootstraped": "col-sm-3",
1927
+ "field": "f_apply_source",
1928
+ "readonly": true,
1929
+ "required": true,
1930
+ "hidden": false,
1931
+ "options": [
1932
+ {
1933
+ "label": "燃气系统",
1934
+ "value": "燃气系统"
1935
+ },
1936
+ {
1937
+ "label": "微信",
1938
+ "value": "微信"
1939
+ }
1940
+ ]
1941
+ },
1942
+ {
1943
+ "label": "联系人",
1944
+ "type": "input",
1945
+ "bootstraped": "col-sm-3",
1946
+ "field": "f_user_name",
1947
+ "placeholder": "请输入",
1948
+ "readonly": false,
1949
+ "disabled": false,
1950
+ "required": true
1951
+ },
1952
+ {
1953
+ "label": "电话号码",
1954
+ "type": "tel",
1955
+ "bootstraped": "col-sm-3",
1956
+ "field": "f_phone",
1957
+ "placeholder": "请输入",
1958
+ "required": true
1959
+ },
1960
+ {
1961
+ "label": "报建类型",
1962
+ "type": "select",
1963
+ "bootstraped": "col-sm-3",
1964
+ "field": "f_apply_type",
1965
+ "default": "个人报建",
1966
+ "placeholder": "请输入",
1967
+ "hidden": true,
1968
+ "required": true
1969
+ },
1970
+ {
1971
+ "label": "业务类型",
1972
+ "type": "select",
1973
+ "bootstraped": "col-sm-3",
1974
+ "field": "f_work_type",
1975
+ "readonly": true,
1976
+ "required": true,
1977
+ "options": [
1978
+ {
1979
+ "label": "新报装",
1980
+ "value": "新报装"
1981
+ },
1982
+ {
1983
+ "label": "改管",
1984
+ "value": "改管"
1985
+ }
1986
+ ]
1987
+ },
1988
+ {
1989
+ "label": "用户类型",
1990
+ "type": "select",
1991
+ "bootstraped": "col-sm-3",
1992
+ "field": "f_user_type",
1993
+ "readonly": true,
1994
+ "required": true
1995
+ },
1996
+ {
1997
+ "label": "县/区",
1998
+ "type": "select",
1999
+ "bootstraped": "col-sm-3",
2000
+ "field": "f_area",
2001
+ "placeholder": "请输入",
2002
+ "required": true
2003
+ },
2004
+ {
2005
+ "label": "街道名称",
2006
+ "type": "select",
2007
+ "bootstraped": "col-sm-3",
2008
+ "field": "f_street",
2009
+ "placeholder": "请输入",
2010
+ "required": true
2011
+ },
2012
+ {
2013
+ "label": "小区名称",
2014
+ "type": "select",
2015
+ "bootstraped": "col-sm-3",
2016
+ "field": "f_residential_area",
2017
+ "placeholder": "请输入",
2018
+ "disabled": false,
2019
+ "required": true
2020
+ },
2021
+ {
2022
+ "label": "楼号",
2023
+ "type": "input",
2024
+ "bootstraped": "col-sm-3",
2025
+ "field": "f_building",
2026
+ "placeholder": "请输入",
2027
+ "disabled": false
2028
+ },
2029
+ {
2030
+ "label": "单元号",
2031
+ "type": "input",
2032
+ "bootstraped": "col-sm-3",
2033
+ "field": "f_unit",
2034
+ "placeholder": "请输入",
2035
+ "disabled": false
2036
+ },
2037
+ {
2038
+ "label": "楼层",
2039
+ "type": "input",
2040
+ "bootstraped": "col-sm-3",
2041
+ "field": "f_floor",
2042
+ "placeholder": "请输入",
2043
+ "disabled": false
2044
+ },
2045
+ {
2046
+ "label": "门牌号",
2047
+ "type": "input",
2048
+ "bootstraped": "col-sm-3",
2049
+ "field": "f_room",
2050
+ "placeholder": "请输入",
2051
+ "disabled": false
2052
+ },
2053
+ {
2054
+ "label": "证件类型",
2055
+ "type": "select",
2056
+ "bootstraped": "col-sm-3",
2057
+ "field": "f_credentials",
2058
+ "placeholder": "请输入",
2059
+ "required": true,
2060
+ "options": [
2061
+ {
2062
+ "label": "身份证",
2063
+ "value": "身份证"
2064
+ },
2065
+ {
2066
+ "label": "房产证",
2067
+ "value": "房产证"
2068
+ },
2069
+ {
2070
+ "label": "军官证",
2071
+ "value": "军官证"
2072
+ }
2073
+ ]
2074
+ },
2075
+ {
2076
+ "label": "勘查人员",
2077
+ "type": "input",
2078
+ "hidden": true,
2079
+ "bootstraped": "col-sm-3",
2080
+ "field": "f_survey_name",
2081
+ "default": "无",
2082
+ "display": false,
2083
+ "readonly": true,
2084
+ "required": false
2085
+ },
2086
+ {
2087
+ "label": "证件号码",
2088
+ "type": "input",
2089
+ "bootstraped": "col-sm-3",
2090
+ "field": "f_idnumber",
2091
+ "placeholder": "请输入",
2092
+ "required": true
2093
+ },
2094
+ {
2095
+ "label": "项目名称",
2096
+ "type": "input",
2097
+ "bootstraped": "col-sm-3",
2098
+ "field": "f_entry_name",
2099
+ "placeholder": "请输入",
2100
+ "readonly": false,
2101
+ "required": false
2102
+ },
2103
+ {
2104
+ "label": "用户名称",
2105
+ "type": "input",
2106
+ "bootstraped": "col-sm-3",
2107
+ "field": "f_company_name",
2108
+ "placeholder": "请输入",
2109
+ "readonly": false
2110
+ },
2111
+ {
2112
+ "label": "地址",
2113
+ "type": "input",
2114
+ "bootstraped": "col-sm-12",
2115
+ "field": "f_address",
2116
+ "placeholder": "请输入",
2117
+ "disabled": false,
2118
+ "readonly": true
2119
+ },
2120
+ {
2121
+ "label": "提交资料",
2122
+ "type": "checkbox",
2123
+ "bootstraped": "col-sm-12",
2124
+ "field": "",
2125
+ "placeholder": "请输入",
2126
+ "disabled": false,
2127
+ "readonly": true,
2128
+ "items": [
2129
+ {
2130
+ "label": "身份证",
2131
+ "value": false
2132
+ },
2133
+ {
2134
+ "label": "房产证",
2135
+ "value": false
2136
+ },
2137
+ {
2138
+ "label": "租贷合同",
2139
+ "value": false
2140
+ },
2141
+ {
2142
+ "label": "营业执照",
2143
+ "value": false
2144
+ }
2145
+ ]
2146
+ },
2147
+ {
2148
+ "label": "用户提交资料",
2149
+ "type": "input",
2150
+ "bootstraped": "col-sm-12",
2151
+ "field": "f_news",
2152
+ "placeholder": "",
2153
+ "disabled": false,
2154
+ "readonly": true
2155
+ },
2156
+ {
2157
+ "label": "备注",
2158
+ "type": "textarea",
2159
+ "bootstraped": "col-sm-12",
2160
+ "field": "t_remarks",
2161
+ "placeholder": "",
2162
+ "rows": 2,
2163
+ "readonly": false,
2164
+ "required": false
2165
+ }
2166
+ ],
2167
+ "buttons": [
2168
+ {
2169
+ "button_name": "打印回单"
2170
+ },
2171
+ {
2172
+ "button_name": "提交"
2173
+ }
2174
+ ]
2175
+ },
2176
+ {
2177
+ "title": "现场勘查人员分配",
2178
+ "tables": [
2179
+ "t_apply"
2180
+ ],
2181
+ "fields": [
2182
+ {
2183
+ "label": "联系人",
2184
+ "type": "input",
2185
+ "bootstraped": "col-sm-3",
2186
+ "field": "f_user_name",
2187
+ "placeholder": "请输入",
2188
+ "readonly": false,
2189
+ "value": null,
2190
+ "disabled": false,
2191
+ "required": true
2192
+ },
2193
+ {
2194
+ "label": "报建类型",
2195
+ "type": "select",
2196
+ "bootstraped": "col-sm-3",
2197
+ "field": "f_apply_type",
2198
+ "placeholder": "请输入",
2199
+ "readonly": true,
2200
+ "disabled": false,
2201
+ "hidden": true,
2202
+ "value": null,
2203
+ "options": [
2204
+ ]
2205
+ },
2206
+ {
2207
+ "label": "电话号码",
2208
+ "type": "tel",
2209
+ "bootstraped": "col-sm-3",
2210
+ "field": "f_phone",
2211
+ "placeholder": "请输入",
2212
+ "readonly": false,
2213
+ "value": null,
2214
+ "disabled": false,
2215
+ "required": true
2216
+ },
2217
+ {
2218
+ "label": "用户类型",
2219
+ "type": "select",
2220
+ "bootstraped": "col-sm-3",
2221
+ "field": "f_user_type",
2222
+ "placeholder": "请输入",
2223
+ "readonly": true,
2224
+ "disabled": false,
2225
+ "required": true,
2226
+ "value": null,
2227
+ "options": [
2228
+ ]
2229
+ },
2230
+ {
2231
+ "label": "勘察人员",
2232
+ "type": "select",
2233
+ "bootstraped": "col-sm-3",
2234
+ "field": "f_survey_name",
2235
+ "placeholder": "请输入",
2236
+ "readonly": false,
2237
+ "value": "默认",
2238
+ "disabled": false,
2239
+ "required": true
2240
+ },
2241
+ {
2242
+ "label": "备用电话",
2243
+ "type": "input",
2244
+ "bootstraped": "col-sm-3",
2245
+ "field": "f_phone2",
2246
+ "placeholder": "请输入",
2247
+ "readonly": false,
2248
+ "value": null,
2249
+ "disabled": false,
2250
+ "required": false
2251
+ },
2252
+ {
2253
+ "label": "安装户数",
2254
+ "type": "number",
2255
+ "bootstraped": "col-sm-3",
2256
+ "field": "f_install_num",
2257
+ "placeholder": "请输入",
2258
+ "readonly": false,
2259
+ "value": 1,
2260
+ "default": 1,
2261
+ "disabled": false,
2262
+ "required": true
2263
+ },
2264
+ {
2265
+ "label": "勘查日期",
2266
+ "type": "datepicker",
2267
+ "bootstraped": "col-sm-3",
2268
+ "field": "f_survey_time",
2269
+ "readonly": true
2270
+ },
2271
+ {
2272
+ "label": "证件类型",
2273
+ "type": "select",
2274
+ "bootstraped": "col-sm-3",
2275
+ "field": "f_credentials",
2276
+ "placeholder": "请输入",
2277
+ "readonly": true,
2278
+ "required": true,
2279
+ "value": "1",
2280
+ "options": [
2281
+ ]
2282
+ },
2283
+ {
2284
+ "label": "证件号码",
2285
+ "type": "input",
2286
+ "bootstraped": "col-sm-3",
2287
+ "field": "f_idnumber",
2288
+ "placeholder": "请输入",
2289
+ "readonly": false,
2290
+ "value": null,
2291
+ "disabled": false,
2292
+ "required": false
2293
+ },
2294
+ {
2295
+ "label": "县/区",
2296
+ "type": "select",
2297
+ "bootstraped": "col-sm-3",
2298
+ "field": "f_area",
2299
+ "placeholder": "请输入",
2300
+ "required": true
2301
+ },
2302
+ {
2303
+ "label": "街道名称",
2304
+ "type": "input",
2305
+ "bootstraped": "col-sm-3",
2306
+ "field": "f_street",
2307
+ "placeholder": "请输入",
2308
+ "required": true
2309
+ },
2310
+ {
2311
+ "label": "小区名称",
2312
+ "type": "input",
2313
+ "bootstraped": "col-sm-3",
2314
+ "field": "f_residential_area",
2315
+ "placeholder": "请输入",
2316
+ "disabled": false,
2317
+ "required": true
2318
+ },
2319
+ {
2320
+ "label": "楼号",
2321
+ "type": "input",
2322
+ "bootstraped": "col-sm-3",
2323
+ "field": "f_building",
2324
+ "placeholder": "请输入",
2325
+ "disabled": false
2326
+ },
2327
+ {
2328
+ "label": "单元号",
2329
+ "type": "input",
2330
+ "bootstraped": "col-sm-3",
2331
+ "field": "f_unit",
2332
+ "placeholder": "请输入",
2333
+ "disabled": false
2334
+ },
2335
+ {
2336
+ "label": "楼层",
2337
+ "type": "input",
2338
+ "bootstraped": "col-sm-3",
2339
+ "field": "f_floor",
2340
+ "placeholder": "请输入",
2341
+ "disabled": false
2342
+ },
2343
+ {
2344
+ "label": "门牌号",
2345
+ "type": "input",
2346
+ "bootstraped": "col-sm-3",
2347
+ "field": "f_room",
2348
+ "placeholder": "请输入",
2349
+ "disabled": false
2350
+ },
2351
+ {
2352
+ "label": "项目名称",
2353
+ "type": "input",
2354
+ "bootstraped": "col-sm-3",
2355
+ "field": "f_entry_name",
2356
+ "placeholder": "请输入",
2357
+ "readonly": false,
2358
+ "value": null,
2359
+ "disabled": false,
2360
+ "required": false
2361
+ },
2362
+ {
2363
+ "label": "用户名称",
2364
+ "type": "input",
2365
+ "bootstraped": "col-sm-3",
2366
+ "field": "f_company_name",
2367
+ "placeholder": "请输入",
2368
+ "readonly": false,
2369
+ "value": null,
2370
+ "disabled": false
2371
+ },
2372
+ {
2373
+ "label": "地址",
2374
+ "type": "input",
2375
+ "bootstraped": "col-sm-12",
2376
+ "field": "f_address",
2377
+ "placeholder": "请输入",
2378
+ "disabled": false,
2379
+ "readonly": true
2380
+ },
2381
+ {
2382
+ "label": "备注",
2383
+ "type": "textarea",
2384
+ "bootstraped": "col-sm-12",
2385
+ "field": "t_remarks",
2386
+ "placeholder": "",
2387
+ "rows": 2,
2388
+ "readonly": false,
2389
+ "required": false
2390
+ }
2391
+ ],
2392
+ "buttons": [
2393
+ {
2394
+ "button_name": "保存"
2395
+ },
2396
+ {
2397
+ "button_name": "提交"
2398
+ }
2399
+ ]
2400
+ },
2401
+ {
2402
+ "title": "现场勘查定价",
2403
+ "mobile": "true",
2404
+ "tables": [
2405
+ "t_apply"
2406
+ ],
2407
+ "fields": [
2408
+ {
2409
+ "label": "实际可安装用户数",
2410
+ "type": "input",
2411
+ "field": "f_install_num",
2412
+ "bootstraped": "col-sm-3",
2413
+ "default": 1,
2414
+ "required": false
2415
+ },
2416
+ {
2417
+ "label": "缴费户数",
2418
+ "type": "input",
2419
+ "bootstraped": "col-sm-3",
2420
+ "field": "f_payfee_num",
2421
+ "default": 1,
2422
+ "required": false
2423
+ },
2424
+ {
2425
+ "label": "气价名称",
2426
+ "type": "select",
2427
+ "bootstraped": "col-sm-3",
2428
+ "field": "f_stair_price_name",
2429
+ "placeholder": "请选择",
2430
+ "required": true
2431
+ },
2432
+ {
2433
+ "label": "勘察人员",
2434
+ "type": "select",
2435
+ "bootstraped": "col-sm-3",
2436
+ "field": "f_survey_name",
2437
+ "placeholder": "请选择",
2438
+ "required": true
2439
+ },
2440
+ {
2441
+ "label": "勘察日期",
2442
+ "type": "datepicker",
2443
+ "bootstraped": "col-sm-3",
2444
+ "field": "f_survey_time",
2445
+ "placeholder": "请选择",
2446
+ "required": true
2447
+ },
2448
+ {
2449
+ "label": "费用合计",
2450
+ "type": "input",
2451
+ "bootstraped": "col-sm-3",
2452
+ "field": "f_total_cost",
2453
+ "readonly": true,
2454
+ "required": true,
2455
+ "hidden": false
2456
+ },
2457
+ {
2458
+ "label": "未结总金额",
2459
+ "type": "number",
2460
+ "bootstraped": "col-sm-3",
2461
+ "field": "f_unaccounts_money",
2462
+ "placeholder": "请输入",
2463
+ "readonly": true,
2464
+ "value": null,
2465
+ "disabled": false,
2466
+ "required": false,
2467
+ "hidden": true
2468
+ },
2469
+ {
2470
+ "label": "勘查结果",
2471
+ "type": "select",
2472
+ "bootstraped": "col-sm-3",
2473
+ "field": "f_checksurp_remark",
2474
+ "placeholder": "请选择",
2475
+ "required": true,
2476
+ "options": [
2477
+ {
2478
+ "label": "合格",
2479
+ "value": "合格"
2480
+ },
2481
+ {
2482
+ "label": "不合格",
2483
+ "value": "不合格"
2484
+ }
2485
+ ]
2486
+ },
2487
+ {
2488
+ "label": "支付账户",
2489
+ "bootstraped": "col-sm-3",
2490
+ "type": "select",
2491
+ "field": "f_payment_account",
2492
+ "default": "请选择",
2493
+ "required": true,
2494
+ "options": [
2495
+ {
2496
+ "label": "安泰",
2497
+ "value": "安泰"
2498
+ },
2499
+ {
2500
+ "label": "欣泰",
2501
+ "value": "欣泰"
2502
+ }
2503
+ ]
2504
+ },
2505
+ {
2506
+ "label": "勘察意见",
2507
+ "type": "textarea",
2508
+ "field": "f_survey_remarks",
2509
+ "rows": 1
2510
+ },
2511
+ {
2512
+ "label": "勘察回复",
2513
+ "type": "textarea",
2514
+ "field": "f_survey_reply",
2515
+ "rows": 3
2516
+ }
2517
+ ],
2518
+ "onetomany": [
2519
+ {
2520
+ "title": "添加收费项目",
2521
+ "hidden": false,
2522
+ "tables": [
2523
+ "t_charge_record_prepare"
2524
+ ],
2525
+ "hiddenOperate": false,
2526
+ "modalSize": "large",
2527
+ "queryEvent": "default",
2528
+ "addHidden": false,
2529
+ "addText": "default",
2530
+ "addStyle": null,
2531
+ "addEvent": "default",
2532
+ "deleteHidden": false,
2533
+ "deleteText": "删除",
2534
+ "deleteStyle": "color: red",
2535
+ "deleteEvent": "default",
2536
+ "deleteMessage": null,
2537
+ "updateHidden": false,
2538
+ "updateText": "修改",
2539
+ "updateStyle": null,
2540
+ "updateEvent": "default",
2541
+ "fields": [
2542
+ {
2543
+ "label": "收费项目",
2544
+ "type": "select",
2545
+ "field": "f_project_item",
2546
+ "readonly": false,
2547
+ "required": true,
2548
+ "options": [],
2549
+ "displayPosition": "*"
2550
+ },
2551
+ {
2552
+ "label": "数量",
2553
+ "type": "input",
2554
+ "field": "f_amount",
2555
+ "placeholder": "请输入",
2556
+ "readonly": false,
2557
+ "required": false,
2558
+ "displayPosition": "*"
2559
+ },
2560
+ {
2561
+ "label": "单价",
2562
+ "type": "input",
2563
+ "field": "f_price",
2564
+ "placeholder": "请输入",
2565
+ "readonly": false,
2566
+ "required": false,
2567
+ "displayPosition": "*"
2568
+ },
2569
+ {
2570
+ "label": "金额",
2571
+ "type": "input",
2572
+ "field": "f_money",
2573
+ "placeholder": "请输入",
2574
+ "readonly": false,
2575
+ "required": false,
2576
+ "displayPosition": "*"
2577
+ }
2578
+ ]
2579
+ }
2580
+ ],
2581
+ "buttons": [
2582
+ {
2583
+ "button_name": "保存"
2584
+ },
2585
+ {
2586
+ "button_name": "提交",
2587
+ "button_event": "合同信息"
2588
+ }
2589
+ ]
2590
+ },
2591
+ {
2592
+ "title": "派单",
2593
+ "tables": [
2594
+ "t_apply"
2595
+ ],
2596
+ "fields": [
2597
+ {
2598
+ "label": "派工单号",
2599
+ "type": "input",
2600
+ "bootstraped": "col-sm-3",
2601
+ "field": "f_dispatched_number",
2602
+ "placeholder": "请输入",
2603
+ "readonly": true,
2604
+ "disabled": false,
2605
+ "required": false
2606
+ },
2607
+ {
2608
+ "label": "项目名称",
2609
+ "type": "input",
2610
+ "bootstraped": "col-sm-3",
2611
+ "field": "f_entry_name",
2612
+ "placeholder": "请输入",
2613
+ "readonly": false,
2614
+ "disabled": false,
2615
+ "required": false
2616
+ },
2617
+ {
2618
+ "label": "用气地点",
2619
+ "type": "input",
2620
+ "bootstraped": "col-sm-3",
2621
+ "field": "f_address",
2622
+ "placeholder": "请输入",
2623
+ "readonly": false,
2624
+ "disabled": false,
2625
+ "required": false
2626
+ },
2627
+ {
2628
+ "label": "申请时间",
2629
+ "type": "datepicker",
2630
+ "bootstraped": "col-sm-3",
2631
+ "field": "f_application_time",
2632
+ "readonly": true,
2633
+ "required": false
2634
+ },
2635
+ {
2636
+ "label": "联系人",
2637
+ "type": "input",
2638
+ "bootstraped": "col-sm-3",
2639
+ "field": "f_user_name",
2640
+ "placeholder": "请输入",
2641
+ "readonly": false,
2642
+ "disabled": false,
2643
+ "required": true
2644
+ },
2645
+ {
2646
+ "label": "联系电话",
2647
+ "type": "input",
2648
+ "bootstraped": "col-sm-3",
2649
+ "field": "f_phone",
2650
+ "placeholder": "请输入",
2651
+ "readonly": false,
2652
+ "disabled": false,
2653
+ "required": false
2654
+ },
2655
+ {
2656
+ "label": "证件号码",
2657
+ "type": "input",
2658
+ "bootstraped": "col-sm-3",
2659
+ "field": "f_idnumber",
2660
+ "placeholder": "请输入",
2661
+ "required": false
2662
+ },
2663
+ {
2664
+ "label": "合同总金额",
2665
+ "type": "number",
2666
+ "bootstraped": "col-sm-3",
2667
+ "field": "f_total_cost",
2668
+ "placeholder": "请输入",
2669
+ "readonly": true,
2670
+ "value": null,
2671
+ "disabled": false,
2672
+ "required": true
2673
+ },
2674
+ {
2675
+ "label": "累计缴费金额",
2676
+ "type": "number",
2677
+ "bootstraped": "col-sm-3",
2678
+ "field": "f_cumulative_money",
2679
+ "placeholder": "请输入",
2680
+ "readonly": true,
2681
+ "disabled": false,
2682
+ "required": true
2683
+ },
2684
+ {
2685
+ "label": "未结总金额",
2686
+ "type": "number",
2687
+ "bootstraped": "col-sm-3",
2688
+ "field": "f_unaccounts_money",
2689
+ "placeholder": "请输入",
2690
+ "readonly": true,
2691
+ "value": null,
2692
+ "disabled": false,
2693
+ "required": false
2694
+ },
2695
+ {
2696
+ "label": "发起时间",
2697
+ "type": "datepicker",
2698
+ "bootstraped": "col-sm-3",
2699
+ "field": "f_Initiation_time",
2700
+ "placeholder": "请输入",
2701
+ "readonly": false,
2702
+ "value": null,
2703
+ "disabled": false,
2704
+ "hide": true
2705
+ },
2706
+ {
2707
+ "label": "施工单位",
2708
+ "type": "select",
2709
+ "bootstraped": "col-sm-3",
2710
+ "field": "f_construction_unit",
2711
+ "required": false
2712
+ }
2713
+ ],
2714
+ "buttons": [
2715
+ {
2716
+ "button_name": "保存"
2717
+ },
2718
+ {
2719
+ "button_name": "提交"
2720
+ }
2721
+ ]
2722
+ },
2723
+ {
2724
+ "title": "安装通气",
2725
+ "mobile": "true",
2726
+ "tables": [
2727
+ "t_apply"
2728
+ ],
2729
+ "fields": [
2730
+ {
2731
+ "label": "合同总金额",
2732
+ "type": "number",
2733
+ "bootstraped": "col-sm-3",
2734
+ "field": "f_total_cost",
2735
+ "placeholder": "请输入",
2736
+ "readonly": true,
2737
+ "value": null,
2738
+ "disabled": false,
2739
+ "required": true
2740
+ },
2741
+ {
2742
+ "label": "累计缴费金额",
2743
+ "type": "number",
2744
+ "bootstraped": "col-sm-3",
2745
+ "field": "f_cumulative_money",
2746
+ "placeholder": "请输入",
2747
+ "readonly": true,
2748
+ "disabled": false,
2749
+ "required": true
2750
+ },
2751
+ {
2752
+ "label": "未结总金额",
2753
+ "type": "number",
2754
+ "bootstraped": "col-sm-3",
2755
+ "field": "f_unaccounts_money",
2756
+ "placeholder": "请输入",
2757
+ "readonly": true,
2758
+ "value": null,
2759
+ "disabled": false,
2760
+ "required": false
2761
+ },
2762
+ {
2763
+ "label": "气表品牌",
2764
+ "type": "select",
2765
+ "bootstraped": "col-sm-3",
2766
+ "field": "f_meter_brand",
2767
+ "placeholder": "请选择",
2768
+ "required": false
2769
+ },
2770
+ {
2771
+ "label": "气表型号",
2772
+ "type": "select",
2773
+ "bootstraped": "col-sm-3",
2774
+ "field": "f_meter_style",
2775
+ "required": true
2776
+ },
2777
+ {
2778
+ "label": "表号",
2779
+ "type": "input",
2780
+ "bootstraped": "col-sm-3",
2781
+ "field": "f_meternumber",
2782
+ "required": false
2783
+ },
2784
+ {
2785
+ "label": "左右表",
2786
+ "type": "select",
2787
+ "bootstraped": "col-sm-3",
2788
+ "field": "f_derection",
2789
+ "readonly": true,
2790
+ "required": false
2791
+ },
2792
+ {
2793
+ "label": "项目名称",
2794
+ "type": "input",
2795
+ "hidden": true,
2796
+ "bootstraped": "col-sm-3",
2797
+ "field": "f_entry_name",
2798
+ "default": "无",
2799
+ "display": false,
2800
+ "readonly": true,
2801
+ "required": false
2802
+ },
2803
+ {
2804
+ "label": "验收结果",
2805
+ "type": "select",
2806
+ "bootstraped": "col-sm-3",
2807
+ "field": "f_check_indoorproject",
2808
+ "default": "请选择",
2809
+ "display": false,
2810
+ "readonly": true,
2811
+ "required": true,
2812
+ "options": [
2813
+ {
2814
+ "label": "合格",
2815
+ "value": "合格"
2816
+ },
2817
+ {
2818
+ "label": "不合格",
2819
+ "value": "不合格"
2820
+ }
2821
+ ]
2822
+ },
2823
+ {
2824
+ "label": "工作内容",
2825
+ "type": "input",
2826
+ "bootstraped": "col-sm-3",
2827
+ "field": "f_job_content",
2828
+ "readonly": false,
2829
+ "required": true
2830
+ },
2831
+ {
2832
+ "label": "施工单位",
2833
+ "type": "select",
2834
+ "bootstraped": "col-sm-3",
2835
+ "field": "f_construction_unit",
2836
+ "required": false
2837
+ }
2838
+ ],
2839
+ "buttons": [
2840
+ {
2841
+ "button_name": "保存"
2842
+ },
2843
+ {
2844
+ "button_name": "提交"
2845
+ }
2846
+ ]
2847
+ },
2848
+ {
2849
+ "title": "踏勘、建立工程编号",
2850
+ "mobile": "true",
2851
+ "tables": [
2852
+ "t_apply"
2853
+ ],
2854
+ "fields": [
2855
+ {
2856
+ "label": "申请时间",
2857
+ "type": "datepicker",
2858
+ "bootstraped": "col-sm-3",
2859
+ "field": "f_application_time",
2860
+ "readonly": true,
2861
+ "required": false
2862
+ },
2863
+ {
2864
+ "label": "用户类型",
2865
+ "type": "select",
2866
+ "bootstraped": "col-sm-3",
2867
+ "field": "f_user_type",
2868
+ "required": true
2869
+ },
2870
+ {
2871
+ "label": "申请单位",
2872
+ "type": "input",
2873
+ "bootstraped": "col-sm-3",
2874
+ "field": "f_company_name",
2875
+ "placeholder": "请输入",
2876
+ "readonly": false,
2877
+ "disabled": false,
2878
+ "required": false
2879
+ },
2880
+ {
2881
+ "label": "用户数量",
2882
+ "type": "number",
2883
+ "bootstraped": "col-sm-3",
2884
+ "field": "f_area_type_user",
2885
+ "placeholder": "请输入",
2886
+ "readonly": false,
2887
+ "disabled": false,
2888
+ "required": false
2889
+ },
2890
+ {
2891
+ "label": "联系人",
2892
+ "type": "input",
2893
+ "bootstraped": "col-sm-3",
2894
+ "field": "f_user_name",
2895
+ "placeholder": "请输入",
2896
+ "readonly": false,
2897
+ "disabled": false,
2898
+ "required": true
2899
+ },
2900
+ {
2901
+ "label": "电话号码",
2902
+ "type": "tel",
2903
+ "bootstraped": "col-sm-3",
2904
+ "field": "f_phone",
2905
+ "placeholder": "请输入",
2906
+ "required": true
2907
+ },
2908
+ {
2909
+ "label": "社会信用代码/身份证",
2910
+ "type": "input",
2911
+ "bootstraped": "col-sm-3",
2912
+ "field": "f_social_credit_code",
2913
+ "placeholder": "请输入",
2914
+ "readonly": false,
2915
+ "disabled": false,
2916
+ "required": true
2917
+ },
2918
+ {
2919
+ "label": "县/区",
2920
+ "type": "select",
2921
+ "bootstraped": "col-sm-3",
2922
+ "field": "f_area",
2923
+ "placeholder": "请输入",
2924
+ "required": true
2925
+ },
2926
+ {
2927
+ "label": "街道名称",
2928
+ "type": "select",
2929
+ "bootstraped": "col-sm-3",
2930
+ "field": "f_street",
2931
+ "placeholder": "请输入",
2932
+ "required": true
2933
+ },
2934
+ {
2935
+ "label": "小区名称",
2936
+ "type": "select",
2937
+ "bootstraped": "col-sm-3",
2938
+ "field": "f_residential_area",
2939
+ "placeholder": "请输入",
2940
+ "disabled": false,
2941
+ "required": true
2942
+ },
2943
+ {
2944
+ "label": "楼号",
2945
+ "type": "input",
2946
+ "bootstraped": "col-sm-3",
2947
+ "field": "f_building",
2948
+ "placeholder": "请输入",
2949
+ "disabled": false
2950
+ },
2951
+ {
2952
+ "label": "单元号",
2953
+ "type": "input",
2954
+ "bootstraped": "col-sm-3",
2955
+ "field": "f_unit",
2956
+ "placeholder": "请输入",
2957
+ "disabled": false
2958
+ },
2959
+ {
2960
+ "label": "楼层",
2961
+ "type": "input",
2962
+ "bootstraped": "col-sm-3",
2963
+ "field": "f_floor",
2964
+ "placeholder": "请输入",
2965
+ "disabled": false
2966
+ },
2967
+ {
2968
+ "label": "门牌号",
2969
+ "type": "input",
2970
+ "bootstraped": "col-sm-3",
2971
+ "field": "f_room",
2972
+ "placeholder": "请输入",
2973
+ "disabled": false
2974
+ },
2975
+ {
2976
+ "label": "报装地址",
2977
+ "type": "input",
2978
+ "bootstraped": "col-sm-12",
2979
+ "field": "f_address",
2980
+ "placeholder": "请输入",
2981
+ "disabled": false,
2982
+ "readonly": false
2983
+ },
2984
+ {
2985
+ "label": "用气设备",
2986
+ "type": "input",
2987
+ "bootstraped": "col-sm-12",
2988
+ "field": "f_user_devices",
2989
+ "placeholder": "请输入",
2990
+ "disabled": false,
2991
+ "readonly": false
2992
+ },
2993
+ {
2994
+ "label": "备注",
2995
+ "type": "textarea",
2996
+ "bootstraped": "col-sm-12",
2997
+ "field": "t_remarks",
2998
+ "placeholder": "",
2999
+ "rows": 2,
3000
+ "readonly": false,
3001
+ "required": false
3002
+ }
3003
+ ],
3004
+ "buttons": [
3005
+ {
3006
+ "button_name": "终止"
3007
+ },
3008
+ {
3009
+ "button_name": "保存"
3010
+ },
3011
+ {
3012
+ "button_name": "提交"
3013
+ },
3014
+ {
3015
+ "button_name": "通气"
3016
+ }
3017
+ ]
3018
+ },
3019
+ {
3020
+ "title": "施工",
3021
+ "mobile": "true",
3022
+ "tables": [
3023
+ "t_apply"
3024
+ ],
3025
+ "fields": [
3026
+ {
3027
+ "label": "申请时间",
3028
+ "type": "datepicker",
3029
+ "bootstraped": "col-sm-3",
3030
+ "field": "f_application_time",
3031
+ "readonly": true,
3032
+ "required": false
3033
+ },
3034
+ {
3035
+ "label": "用户类型",
3036
+ "type": "input",
3037
+ "bootstraped": "col-sm-3",
3038
+ "field": "f_user_type",
3039
+ "required": true,
3040
+ "readonly": true
3041
+ },
3042
+ {
3043
+ "label": "申请单位",
3044
+ "type": "input",
3045
+ "bootstraped": "col-sm-3",
3046
+ "field": "f_company_name",
3047
+ "placeholder": "请输入",
3048
+ "readonly": true,
3049
+ "disabled": false,
3050
+ "required": false
3051
+ },
3052
+ {
3053
+ "label": "用户数量",
3054
+ "type": "number",
3055
+ "bootstraped": "col-sm-3",
3056
+ "field": "f_area_type_user",
3057
+ "placeholder": "请输入",
3058
+ "readonly": true,
3059
+ "disabled": false,
3060
+ "required": false
3061
+ },
3062
+ {
3063
+ "label": "联系人",
3064
+ "type": "input",
3065
+ "bootstraped": "col-sm-3",
3066
+ "field": "f_user_name",
3067
+ "placeholder": "请输入",
3068
+ "readonly": true,
3069
+ "disabled": false,
3070
+ "required": true
3071
+ },
3072
+ {
3073
+ "label": "电话号码",
3074
+ "type": "tel",
3075
+ "bootstraped": "col-sm-3",
3076
+ "field": "f_phone",
3077
+ "placeholder": "请输入",
3078
+ "required": true,
3079
+ "readonly": true
3080
+ },
3081
+ {
3082
+ "label": "社会信用代码/身份证",
3083
+ "type": "input",
3084
+ "bootstraped": "col-sm-3",
3085
+ "field": "f_social_credit_code",
3086
+ "placeholder": "请输入",
3087
+ "readonly": true,
3088
+ "disabled": false,
3089
+ "required": true
3090
+ },
3091
+ {
3092
+ "label": "报装地址",
3093
+ "type": "input",
3094
+ "bootstraped": "col-sm-12",
3095
+ "field": "f_address",
3096
+ "placeholder": "请输入",
3097
+ "disabled": false,
3098
+ "readonly": true
3099
+ },
3100
+ {
3101
+ "label": "用气设备",
3102
+ "type": "input",
3103
+ "bootstraped": "col-sm-12",
3104
+ "field": "f_user_devices",
3105
+ "placeholder": "请输入",
3106
+ "disabled": false,
3107
+ "readonly": true
3108
+ },
3109
+ {
3110
+ "label": "备注",
3111
+ "type": "textarea",
3112
+ "bootstraped": "col-sm-12",
3113
+ "field": "t_remarks",
3114
+ "placeholder": "",
3115
+ "rows": 2,
3116
+ "readonly": true,
3117
+ "required": false
3118
+ },
3119
+ {
3120
+ "label": "施工是否完成",
3121
+ "type": "select",
3122
+ "bootstraped": "col-sm-3",
3123
+ "field": "f_shigong_upload_state",
3124
+ "readonly": false,
3125
+ "required": true,
3126
+ "options": [
3127
+ {
3128
+ "label": "是",
3129
+ "value": "是"
3130
+ },
3131
+ {
3132
+ "label": "否",
3133
+ "value": "否"
3134
+ }
3135
+ ]
3136
+ },
3137
+ {
3138
+ "label": "施工提交资料",
3139
+ "type": "checkbox",
3140
+ "bootstraped": "col-sm-12",
3141
+ "field": "f_project_material",
3142
+ "placeholder": "请输入",
3143
+ "disabled": false,
3144
+ "readonly": true,
3145
+ "items": [
3146
+ {
3147
+ "label": "建设工程规划许可证",
3148
+ "value": false
3149
+ },
3150
+ {
3151
+ "label": "施工图及图审合格书",
3152
+ "value": false
3153
+ },
3154
+ {
3155
+ "label": "建筑工程施工许可证",
3156
+ "value": false
3157
+ },
3158
+ {
3159
+ "label": "压力管道申报",
3160
+ "value": false
3161
+ },
3162
+ {
3163
+ "label": "其它设施许可",
3164
+ "value": false
3165
+ }
3166
+ ]
3167
+ },
3168
+ {
3169
+ "label": "施工已上传文件",
3170
+ "type": "textarea",
3171
+ "bootstraped": "col-sm-12",
3172
+ "field": "f_project_material",
3173
+ "placeholder": "",
3174
+ "rows": 2,
3175
+ "readonly": false,
3176
+ "required": false
3177
+ }
3178
+ ],
3179
+ "buttons": [
3180
+ {
3181
+ "button_name": "保存"
3182
+ },
3183
+ {
3184
+ "button_name": "提交"
3185
+ }
3186
+ ]
3187
+ },
3188
+ {
3189
+ "title": "施工验收",
3190
+ "mobile": "true",
3191
+ "tables": [
3192
+ "t_apply"
3193
+ ],
3194
+ "fields": [
3195
+ {
3196
+ "label": "申请时间",
3197
+ "type": "datepicker",
3198
+ "bootstraped": "col-sm-3",
3199
+ "field": "f_application_time",
3200
+ "readonly": true,
3201
+ "required": false
3202
+ },
3203
+ {
3204
+ "label": "用户类型",
3205
+ "type": "input",
3206
+ "bootstraped": "col-sm-3",
3207
+ "field": "f_user_type",
3208
+ "required": true,
3209
+ "readonly": true
3210
+ },
3211
+ {
3212
+ "label": "申请单位",
3213
+ "type": "input",
3214
+ "bootstraped": "col-sm-3",
3215
+ "field": "f_company_name",
3216
+ "placeholder": "请输入",
3217
+ "readonly": true,
3218
+ "disabled": false,
3219
+ "required": false
3220
+ },
3221
+ {
3222
+ "label": "用户数量",
3223
+ "type": "number",
3224
+ "bootstraped": "col-sm-3",
3225
+ "field": "f_area_type_user",
3226
+ "placeholder": "请输入",
3227
+ "readonly": true,
3228
+ "disabled": false,
3229
+ "required": false
3230
+ },
3231
+ {
3232
+ "label": "联系人",
3233
+ "type": "input",
3234
+ "bootstraped": "col-sm-3",
3235
+ "field": "f_user_name",
3236
+ "placeholder": "请输入",
3237
+ "readonly": true,
3238
+ "disabled": false,
3239
+ "required": true
3240
+ },
3241
+ {
3242
+ "label": "电话号码",
3243
+ "type": "tel",
3244
+ "bootstraped": "col-sm-3",
3245
+ "field": "f_phone",
3246
+ "placeholder": "请输入",
3247
+ "required": true,
3248
+ "readonly": true
3249
+ },
3250
+ {
3251
+ "label": "社会信用代码/身份证",
3252
+ "type": "input",
3253
+ "bootstraped": "col-sm-3",
3254
+ "field": "f_social_credit_code",
3255
+ "placeholder": "请输入",
3256
+ "readonly": true,
3257
+ "disabled": false,
3258
+ "required": true
3259
+ },
3260
+ {
3261
+ "label": "报装地址",
3262
+ "type": "input",
3263
+ "bootstraped": "col-sm-12",
3264
+ "field": "f_address",
3265
+ "placeholder": "请输入",
3266
+ "disabled": false,
3267
+ "readonly": true
3268
+ },
3269
+ {
3270
+ "label": "用气设备",
3271
+ "type": "input",
3272
+ "bootstraped": "col-sm-12",
3273
+ "field": "f_user_devices",
3274
+ "placeholder": "请输入",
3275
+ "disabled": false,
3276
+ "readonly": true
3277
+ },
3278
+ {
3279
+ "label": "备注",
3280
+ "type": "textarea",
3281
+ "bootstraped": "col-sm-12",
3282
+ "field": "t_remarks",
3283
+ "placeholder": "",
3284
+ "rows": 2,
3285
+ "readonly": true,
3286
+ "required": false
3287
+ },
3288
+ {
3289
+ "label": "验收部门",
3290
+ "type": "select",
3291
+ "bootstraped": "col-sm-4",
3292
+ "field": "f_checking_department",
3293
+ "disabled": false,
3294
+ "required": false,
3295
+ "readonly": false,
3296
+ "options": [
3297
+ {
3298
+ "label": "工程部",
3299
+ "value": "工程部"
3300
+ },
3301
+ {
3302
+ "label": "客服部",
3303
+ "value": "客服部"
3304
+ },
3305
+ {
3306
+ "label": "运营部",
3307
+ "value": "运营部"
3308
+ }
3309
+ ]
3310
+ },
3311
+ {
3312
+ "label": "验收人员",
3313
+ "type": "input",
3314
+ "bootstraped": "col-sm-4",
3315
+ "field": "f_checking_name",
3316
+ "disabled": false,
3317
+ "required": true,
3318
+ "readonly": false
3319
+ },
3320
+ {
3321
+ "label": "验收是否完成",
3322
+ "type": "select",
3323
+ "bootstraped": "col-sm-3",
3324
+ "field": "f_yanshou_upload_state",
3325
+ "readonly": false,
3326
+ "required": true,
3327
+ "options": [
3328
+ {
3329
+ "label": "是",
3330
+ "value": "是"
3331
+ },
3332
+ {
3333
+ "label": "否",
3334
+ "value": "否"
3335
+ }
3336
+ ]
3337
+ },
3338
+ {
3339
+ "label": "验收提交资料",
3340
+ "type": "checkbox",
3341
+ "bootstraped": "col-sm-12",
3342
+ "field": "f_project_material",
3343
+ "placeholder": "请输入",
3344
+ "disabled": false,
3345
+ "readonly": true,
3346
+ "items": [
3347
+ {
3348
+ "label": "竣工验收报告",
3349
+ "value": false
3350
+ },
3351
+ {
3352
+ "label": "竣工验收备案表",
3353
+ "value": false
3354
+ },
3355
+ {
3356
+ "label": "压力管道监督检验报告",
3357
+ "value": false
3358
+ },
3359
+ {
3360
+ "label": "工程移交表",
3361
+ "value": false
3362
+ }
3363
+ ]
3364
+ },
3365
+ {
3366
+ "label": "验收已上传文件",
3367
+ "type": "textarea",
3368
+ "bootstraped": "col-sm-12",
3369
+ "field": "f_iscomplete_information",
3370
+ "placeholder": "",
3371
+ "rows": 2,
3372
+ "readonly": true,
3373
+ "required": false
3374
+ }
3375
+ ],
3376
+ "onetomany": [
3377
+ ],
3378
+ "buttons": [
3379
+ {
3380
+ "button_name": "保存"
3381
+ },
3382
+ {
3383
+ "button_name": "提交"
3384
+ }
3385
+ ]
3386
+ },
3387
+ {
3388
+ "title": "通气转单",
3389
+ "mobile": "true",
3390
+ "tables": [
3391
+ "t_apply"
3392
+ ],
3393
+ "fields": [
3394
+ {
3395
+ "label": "申请时间",
3396
+ "type": "datepicker",
3397
+ "bootstraped": "col-sm-3",
3398
+ "field": "f_application_time",
3399
+ "readonly": true,
3400
+ "required": false
3401
+ },
3402
+ {
3403
+ "label": "用户类型",
3404
+ "type": "input",
3405
+ "bootstraped": "col-sm-3",
3406
+ "field": "f_user_type",
3407
+ "required": true,
3408
+ "readonly": true
3409
+ },
3410
+ {
3411
+ "label": "申请单位",
3412
+ "type": "input",
3413
+ "bootstraped": "col-sm-3",
3414
+ "field": "f_company_name",
3415
+ "placeholder": "请输入",
3416
+ "readonly": true,
3417
+ "disabled": false,
3418
+ "required": false
3419
+ },
3420
+ {
3421
+ "label": "用户数量",
3422
+ "type": "number",
3423
+ "bootstraped": "col-sm-3",
3424
+ "field": "f_area_type_user",
3425
+ "placeholder": "请输入",
3426
+ "readonly": true,
3427
+ "disabled": false,
3428
+ "required": false
3429
+ },
3430
+ {
3431
+ "label": "联系人",
3432
+ "type": "input",
3433
+ "bootstraped": "col-sm-3",
3434
+ "field": "f_user_name",
3435
+ "placeholder": "请输入",
3436
+ "readonly": true,
3437
+ "disabled": false,
3438
+ "required": true
3439
+ },
3440
+ {
3441
+ "label": "电话号码",
3442
+ "type": "tel",
3443
+ "bootstraped": "col-sm-3",
3444
+ "field": "f_phone",
3445
+ "placeholder": "请输入",
3446
+ "required": true,
3447
+ "readonly": true
3448
+ },
3449
+ {
3450
+ "label": "社会信用代码/身份证",
3451
+ "type": "input",
3452
+ "bootstraped": "col-sm-3",
3453
+ "field": "f_social_credit_code",
3454
+ "placeholder": "请输入",
3455
+ "readonly": true,
3456
+ "disabled": false,
3457
+ "required": true
3458
+ },
3459
+ {
3460
+ "label": "报装地址",
3461
+ "type": "input",
3462
+ "bootstraped": "col-sm-12",
3463
+ "field": "f_address",
3464
+ "placeholder": "请输入",
3465
+ "disabled": false,
3466
+ "readonly": true
3467
+ },
3468
+ {
3469
+ "label": "用气设备",
3470
+ "type": "input",
3471
+ "bootstraped": "col-sm-12",
3472
+ "field": "f_user_devices",
3473
+ "placeholder": "请输入",
3474
+ "disabled": false,
3475
+ "readonly": true
3476
+ },
3477
+ {
3478
+ "label": "备注",
3479
+ "type": "textarea",
3480
+ "bootstraped": "col-sm-12",
3481
+ "field": "t_remarks",
3482
+ "placeholder": "",
3483
+ "rows": 2,
3484
+ "readonly": true,
3485
+ "required": false
3486
+ },
3487
+ {
3488
+ "label": "申请时间",
3489
+ "type": "datepicker",
3490
+ "bootstraped": "col-sm-3",
3491
+ "field": "f_displacement_time",
3492
+ "readonly": false,
3493
+ "required": true
3494
+ },
3495
+ {
3496
+ "label": "置换通气人",
3497
+ "type": "input",
3498
+ "bootstraped": "col-sm-3",
3499
+ "field": "f_displacement_people",
3500
+ "readonly": false,
3501
+ "disabled": false,
3502
+ "required": true
3503
+ }
3504
+ ],
3505
+ "buttons": [
3506
+ {
3507
+ "button_name": "保存"
3508
+ },
3509
+ {
3510
+ "button_name": "散户报装"
3511
+ },
3512
+ {
3513
+ "button_name": "集体报装"
3514
+ }
3515
+ ]
3516
+ }
3517
+ ]
3518
+ }
3519
+
3520
+ console.log('前台存入缓存中的data=>' + JSON.stringify(data))
3521
+ Vue.workflow_vue = Vue.prototype.$workflow_vue = data
3522
+ }
3523
+
3524
+
3525
+ }
3526
+ </script>
3527
+
3528
+ <style>
3529
+ .app-row {
3530
+ background-color: white;
3531
+ padding: 10px 10px 0 10px;
3532
+ border-bottom: 1px solid rgba(235, 235, 235, 0.5);
3533
+ }
3534
+
3535
+ .search_input {
3536
+ border: 0;
3537
+ outline: none;
3538
+ }
3539
+
3540
+ .button_shrink_top {
3541
+ width: 30px;
3542
+ height: 30px;
3543
+ background-size: 30px 30px;
3544
+ background-image: url("../../../static/newStyle/stretch_top.png")
3545
+ }
3546
+
3547
+ .button_shrink_bottom {
3548
+ width: 30px;
3549
+ height: 30px;
3550
+ background-size: 30px 30px;
3551
+ background-image: url("../../../static/newStyle/stretch_bottom.png")
3552
+ }
3553
+
3554
+ .app-botton {
3555
+ position: fixed;
3556
+ background: #87b2dd;
3557
+ color: #FFF;
3558
+ padding: 8px;
3559
+ text-align: center;
3560
+ font-size: 1.2em;
3561
+ z-index: 10;
3562
+ opacity: 0.5;
3563
+ bottom: 50px;
3564
+ margin-top: -10px;
3565
+ height: 40px;
3566
+ }
3567
+
3568
+ .class-a {
3569
+ border: 1px solid red;
3570
+ }
3571
+
3572
+ .padd-div-shu {
3573
+ padding-bottom: 5px;
3574
+ }
3575
+ </style>