apply-clients 5.0.35-50 → 5.0.35-53

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