apply-clients 5.0.35-51 → 5.0.35-52

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,2836 @@
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
+ </blockquote>
18
+
19
+ </div>
20
+ <div style="height: auto;width: 100%" v-if="criteriaShow">
21
+ <div class="row app-row">
22
+ <div class="col-xs-4">
23
+ <img src="../../assets/用户姓名.png" style="width: 20px;margin-bottom: 5px" alt="">
24
+ <label class="font text-left">用户姓名:</label>
25
+ </div>
26
+ <div class="col-xs-8">
27
+ <input class="search_input input-font" v-model=model.f_user_name condition="f_user_name like '%{}%'"/>
28
+ </div>
29
+ </div>
30
+ <div class="row app-row">
31
+ <div class="col-xs-4">
32
+ <img src="../../assets/用户地址.png" style="width: 20px;margin-bottom: 5px" alt="">
33
+ <label class="font text-left">用户地址:</label>
34
+ </div>
35
+ <div class="col-xs-8">
36
+ <input class="search_input input-font" v-model=model.f_address condition="f_user_name like '%{}%'"/>
37
+ </div>
38
+ </div>
39
+ <div class="row app-row">
40
+ <div class="col-xs-4">
41
+ <img src="../../assets/用户电话.png" style="width: 20px;margin-bottom: 5px" alt="">
42
+ <label class="font text-left">用户电话:</label>
43
+ </div>
44
+ <div class="col-xs-8">
45
+ <input class="search_input input-font" v-model=model.f_phone condition="f_user_name like '%{}%'"/>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ <div class="panel panel-default repair-info-content auto">
50
+ <div class="panel-body">
51
+ <div class="panel panel-default well" v-for="row in rows">
52
+ <div class="panel-body bg-info" style="padding: 10px">
53
+ <div class="row form-group">
54
+ <div class="col-sm-12 col-xs-12 col-md-12">
55
+ <div class="row">
56
+ <div :class="{'text-danger': row.f_remindersign}" class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
57
+ 报建编号: {{ row.f_apply_num }}<!--<span v-if="row.f_remindersign">(催单)</span>-->
58
+ </div>
59
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
60
+ 用户姓名: {{ row.f_user_name }}
61
+ </div>
62
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
63
+ 用户类型: {{ row.f_user_type }}
64
+ </div>
65
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
66
+ 用户地址: {{ row.f_address }}
67
+ </div>
68
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
69
+ 用户电话: {{ row.f_phone }}
70
+ <img src="../../assets/telphonesend.png" style="width: 12px;"
71
+ @click.stop.prevent='makeAPhoneCall(row.f_phone)'>
72
+ </div>
73
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
74
+ 流程状态: {{ row.defname }}
75
+ </div>
76
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
77
+ 报建类型: {{ row.f_apply_type }}
78
+ </div>
79
+ <div class="col-sm-12 col-xs-12 col-md-12 padd-div-shu">
80
+ 报建日期: {{ row.f_apply_date }}
81
+ </div>
82
+
83
+ </div>
84
+ </div>
85
+ <div class="col-sm-12 col-xs-12 col-md-12">
86
+ <button type="button" name="button" class="btn btn-primary"
87
+ style="background-color:#499edf;float: right" @click="selected(row)">立即处理
88
+ </button>
89
+ </div>
90
+ </div>
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </div>
95
+ </div>
96
+ </template>
97
+ <script>
98
+ import Vue from 'vue'
99
+ import {HttpResetClass} from 'vue-client'
100
+
101
+ export default {
102
+ title: '待办报建列表',
103
+ data() {
104
+ return {
105
+ // rows: Object
106
+ rows: [],
107
+ model: {},
108
+ criteriaShow: false,
109
+ editshow: false,
110
+ row: {
111
+ type: Object,
112
+ default: {}
113
+ }
114
+ }
115
+ },
116
+ props: {
117
+ sourcet: {
118
+ type: String,
119
+ default: '横屏'
120
+ }
121
+ },
122
+ methods: {
123
+ hidden() {
124
+ this.criteriaShow = !this.criteriaShow
125
+ },
126
+ selected(row) {
127
+ var _this = this
128
+ var pardate = {
129
+ _this: _this,
130
+ title: '工程待办详情',
131
+ safe: true
132
+ }
133
+ _this.$dispatch('gotoson', pardate)
134
+ row.canedit = true
135
+ if (_this.sourcet == '横屏') {
136
+ _this.$goto('placecontrolerapp', {row: row}, 'self', this.search)
137
+ } else {
138
+ _this.$goto('placecontrolerapp', {row: row}, 'self', this.search)
139
+ }
140
+ },
141
+ back() {
142
+ let _this = this
143
+ _this.$back()
144
+ },
145
+ search() {
146
+ // app正式运行程序
147
+ console.log('------app开始查询本地代办工单------')
148
+ var condition = "defname in ('现场勘查','验收','通气','现场勘查定价','安装通气')"
149
+
150
+ console.log(JSON.stringify(this.model))
151
+ if (this.model.f_user_name) {
152
+ condition += ` and f_user_name like '%${this.model.f_user_name}%'`
153
+ }
154
+ if (this.model.f_address) {
155
+ condition += ` and f_address like '%${this.model.f_address}%'`
156
+ }
157
+ if (this.model.f_phone) {
158
+ condition += ` and f_phone like '%${this.model.f_phone}%'`
159
+ }
160
+ console.log(`login_user_id=>>>${Vue.user.id}`)
161
+ console.log(`分公司=>>>${Vue.user.f_fengongsi}`)
162
+ var param = {
163
+ condition: condition,
164
+ condValue: [],
165
+ data: {"id": Vue.user.id, "fengongsi": Vue.user.f_fengongsi, f_product_id: 1}
166
+ }
167
+
168
+ console.log(`param=>>>${JSON.stringify(param)}`)
169
+ let http = new HttpResetClass()
170
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/checkuser`, {data: param}).then(res => {
171
+ console.log(`前台本地报建代办工单查询结果data=>>>${JSON.stringify(res.data)}`)
172
+ if (res.data) {
173
+ this.rows = res.data
174
+ } else {
175
+ this.rows = []
176
+ }
177
+ })
178
+ },
179
+ makeAPhoneCall(phoneNumber) {
180
+ this.$androidUtil.makeAPhoneCall(phoneNumber)
181
+ },
182
+ upload() {
183
+ this.$goto('up-load')
184
+ }
185
+ },
186
+ ready() {
187
+ this.search()
188
+ var _this = this;
189
+ this.timeoutHandle = window.setInterval(function () {
190
+ _this.search()
191
+ }, 6000000)//60000
192
+ },
193
+ created() {
194
+ var result = HostApp.readLocalFile('workflow_apply.json')
195
+ if (result.code == 500) {
196
+ this.$showMessage('获取流程配置文件失败,请联系系统管理员')
197
+ return
198
+ }
199
+
200
+ var data = JSON.parse(result)
201
+ console.log(data)
202
+ // var data={
203
+ // "start_activitys":["集体报装申请","报装申请"],
204
+ // "start_activity":"",
205
+ // "workflow_xmlfilename": "鄂州报建流程",
206
+ // "activitys": [
207
+ // {
208
+ // "title": "集体报装申请",
209
+ // "tables": [
210
+ // "t_apply"
211
+ // ],
212
+ // "fields": [
213
+ // {
214
+ // "label": "申请时间",
215
+ // "type": "datepicker",
216
+ // "bootstraped": "col-sm-3",
217
+ // "field": "f_application_time",
218
+ // "readonly": false,
219
+ // "required": false,
220
+ // "hidden": true
221
+ // },
222
+ // {
223
+ // "label": "报装来源",
224
+ // "type": "select",
225
+ // "bootstraped": "col-sm-3",
226
+ // "field": "f_apply_source",
227
+ // "readonly": false,
228
+ // "required": true,
229
+ // "hidden": false,
230
+ // "options": [
231
+ // {
232
+ // "label": "燃气系统",
233
+ // "value": "燃气系统"
234
+ // },
235
+ // {
236
+ // "label": "微信",
237
+ // "value": "微信"
238
+ // }
239
+ // ]
240
+ // },
241
+ // {
242
+ // "label": "联系人",
243
+ // "type": "input",
244
+ // "bootstraped": "col-sm-3",
245
+ // "field": "f_user_name",
246
+ // "placeholder": "请输入",
247
+ // "readonly": false,
248
+ // "disabled": false,
249
+ // "required": true
250
+ // },
251
+ // {
252
+ // "label": "电话号码",
253
+ // "type": "tel",
254
+ // "bootstraped": "col-sm-3",
255
+ // "field": "f_phone",
256
+ // "placeholder": "请输入",
257
+ // "required": true
258
+ // },
259
+ // {
260
+ // "label": "业务类型",
261
+ // "type": "select",
262
+ // "bootstraped": "col-sm-3",
263
+ // "field": "f_work_type",
264
+ // "readonly": false,
265
+ // "required": true,
266
+ // "options": [
267
+ // {
268
+ // "label": "新报装",
269
+ // "value": "新报装"
270
+ // },
271
+ // {
272
+ // "label": "改管",
273
+ // "value": "改管"
274
+ // }
275
+ // ]
276
+ // },
277
+ // {
278
+ // "label": "报建类型",
279
+ // "type": "input",
280
+ // "bootstraped": "col-sm-3",
281
+ // "field": "f_apply_type",
282
+ // "placeholder": "请输入",
283
+ // "default": "集体报建",
284
+ // "hidden": true,
285
+ // "required": true
286
+ // },
287
+ // {
288
+ // "label": "用户类型",
289
+ // "type": "select",
290
+ // "bootstraped": "col-sm-3",
291
+ // "field": "f_user_type",
292
+ // "required": true
293
+ // },
294
+ // {
295
+ // "label": "县/区",
296
+ // "type": "select",
297
+ // "bootstraped": "col-sm-3",
298
+ // "field": "f_area",
299
+ // "placeholder": "请输入",
300
+ // "required": true
301
+ // },
302
+ // {
303
+ // "label": "街道名称",
304
+ // "type": "select",
305
+ // "bootstraped": "col-sm-3",
306
+ // "field": "f_street",
307
+ // "placeholder": "请输入",
308
+ // "required": true
309
+ // },
310
+ //
311
+ // {
312
+ // "label": "小区名称",
313
+ // "type": "select",
314
+ // "bootstraped": "col-sm-3",
315
+ // "field": "f_residential_area",
316
+ // "placeholder": "请输入",
317
+ // "disabled": false,
318
+ // "required": true
319
+ // },
320
+ // {
321
+ // "label": "小区地址",
322
+ // "type": "input",
323
+ // "bootstraped": "col-sm-3",
324
+ // "field": "f_area_address",
325
+ // "read-only": true,
326
+ // "hidden": false
327
+ // },
328
+ // {
329
+ // "label": "勘查人员",
330
+ // "type": "input",
331
+ // "hidden": true,
332
+ // "bootstraped": "col-sm-3",
333
+ // "field": "f_survey_name",
334
+ // "default": "无",
335
+ // "display":false,
336
+ // "readonly": false,
337
+ // "required": false
338
+ // },
339
+ // {
340
+ // "label": "项目名称",
341
+ // "type": "input",
342
+ // "bootstraped": "col-sm-3",
343
+ // "field": "f_entry_name",
344
+ // "placeholder": "请输入",
345
+ // "readonly": false,
346
+ // "required": false
347
+ // },
348
+ // {
349
+ // "label": "地址",
350
+ // "type": "input",
351
+ // "bootstraped": "col-sm-12",
352
+ // "field": "f_address",
353
+ // "placeholder": "请输入",
354
+ // "disabled": false,
355
+ // "readonly": true
356
+ // },
357
+ // {
358
+ // "label": "备注",
359
+ // "type": "textarea",
360
+ // "bootstraped": "col-sm-12",
361
+ // "default": "",
362
+ // "field": "t_remarks",
363
+ // "placeholder": "",
364
+ // "rows": 2,
365
+ // "readonly": false,
366
+ //
367
+ // "required": false
368
+ // }
369
+ // ],
370
+ // "buttons": [
371
+ // {
372
+ // "button_name": "提交"
373
+ // }
374
+ // ]
375
+ // },
376
+ // {
377
+ // "title": "集体现场勘查人员分配",
378
+ // "tables": [
379
+ // "t_apply"
380
+ // ],
381
+ // "fields": [
382
+ // {
383
+ // "label": "联系人",
384
+ // "type": "input",
385
+ // "bootstraped": "col-sm-3",
386
+ // "field": "f_user_name",
387
+ // "placeholder": "请输入",
388
+ // "readonly": false,
389
+ // "value": null,
390
+ // "disabled": false,
391
+ // "required": true
392
+ // },
393
+ // {
394
+ // "label": "报建类型",
395
+ // "type": "select",
396
+ // "bootstraped": "col-sm-3",
397
+ // "field": "f_apply_type",
398
+ // "placeholder": "请输入",
399
+ // "readonly": false,
400
+ // "disabled": false,
401
+ // "required": true,
402
+ // "value": null,
403
+ // "hidden": true,
404
+ // "options": [
405
+ // ]
406
+ // },
407
+ // {
408
+ // "label": "电话号码",
409
+ // "type": "tel",
410
+ // "bootstraped": "col-sm-3",
411
+ // "field": "f_phone",
412
+ // "placeholder": "请输入",
413
+ // "readonly": false,
414
+ // "value": null,
415
+ // "disabled": false,
416
+ // "required": true
417
+ // },
418
+ // {
419
+ // "label": "用户类型",
420
+ // "type": "select",
421
+ // "bootstraped": "col-sm-3",
422
+ // "field": "f_user_type",
423
+ // "placeholder": "请输入",
424
+ // "readonly": false,
425
+ // "disabled": false,
426
+ // "required": true,
427
+ // "value": null,
428
+ // "options": [
429
+ // ]
430
+ // },
431
+ // {
432
+ // "label": "勘察人员",
433
+ // "type": "select",
434
+ // "bootstraped": "col-sm-3",
435
+ // "field": "f_survey_name",
436
+ // "placeholder": "请输入",
437
+ // "readonly": false,
438
+ // "value": "默认",
439
+ // "disabled": false,
440
+ // "required": true
441
+ // },
442
+ // {
443
+ // "label": "安装户数",
444
+ // "type": "number",
445
+ // "bootstraped": "col-sm-3",
446
+ // "field": "f_install_num",
447
+ // "placeholder": "请输入",
448
+ // "readonly": false,
449
+ // "value": 1,
450
+ // "default": 1,
451
+ // "disabled": false,
452
+ // "required": true
453
+ // },
454
+ // {
455
+ // "label": "勘查日期",
456
+ // "type": "datepicker",
457
+ // "bootstraped": "col-sm-3",
458
+ // "field": "f_survey_time",
459
+ // "readonly": true
460
+ // },
461
+ //
462
+ // {
463
+ // "label": "县/区",
464
+ // "type": "select",
465
+ // "bootstraped": "col-sm-3",
466
+ // "field": "f_area",
467
+ // "placeholder": "请输入",
468
+ // "required": true
469
+ // },
470
+ // {
471
+ // "label": "街道名称",
472
+ // "type": "input",
473
+ // "bootstraped": "col-sm-3",
474
+ // "field": "f_street",
475
+ // "placeholder": "请输入",
476
+ // "required": true
477
+ // },
478
+ // {
479
+ // "label": "小区名称",
480
+ // "type": "input",
481
+ // "bootstraped": "col-sm-3",
482
+ // "field": "f_residential_area",
483
+ // "placeholder": "请输入",
484
+ // "disabled": false,
485
+ // "required": true
486
+ // },
487
+ // {
488
+ // "label": "地址",
489
+ // "type": "input",
490
+ // "bootstraped": "col-sm-12",
491
+ // "field": "f_address",
492
+ // "placeholder": "请输入",
493
+ // "disabled": false,
494
+ // "readonly": true
495
+ // },
496
+ // {
497
+ // "label": "项目名称",
498
+ // "type": "input",
499
+ // "bootstraped": "col-sm-3",
500
+ // "field": "f_entry_name",
501
+ // "placeholder": "请输入",
502
+ // "readonly": false,
503
+ // "value": null,
504
+ // "disabled": false,
505
+ // "required": false
506
+ // },
507
+ // {
508
+ // "label": "备注",
509
+ // "type": "textarea",
510
+ // "bootstraped": "col-sm-12",
511
+ // "field": "t_remarks",
512
+ // "placeholder": "",
513
+ // "rows": 2,
514
+ // "readonly": false,
515
+ // "required": false
516
+ // }
517
+ // ],
518
+ // "buttons": [
519
+ // {
520
+ // "button_name": "保存"
521
+ // },
522
+ // {
523
+ // "button_name": "提交"
524
+ // }
525
+ // ]
526
+ // },
527
+ // {
528
+ // "title": "现场勘查",
529
+ // "mobile":"true",
530
+ // "tables": [
531
+ // "t_apply"
532
+ // ],
533
+ // "fields": [
534
+ // {
535
+ // "label": "实际可安装用户数",
536
+ // "bootstraped": "col-sm-3",
537
+ // "type": "input",
538
+ // "field": "f_install_num",
539
+ // "default": 1,
540
+ // "required": false
541
+ // },
542
+ // {
543
+ // "label": "缴费户数",
544
+ // "type": "input",
545
+ // "bootstraped": "col-sm-3",
546
+ // "field": "f_payfee_num",
547
+ // "default": 1,
548
+ // "required": false
549
+ // },
550
+ // {
551
+ // "label": "气价名称",
552
+ // "bootstraped": "col-sm-3",
553
+ // "type": "select",
554
+ // "field": "f_stair_price_name",
555
+ // "placeholder": "请选择",
556
+ // "required": true
557
+ // },
558
+ // {
559
+ // "label": "勘察人员",
560
+ // "bootstraped": "col-sm-3",
561
+ // "type": "select",
562
+ // "field": "f_survey_name",
563
+ // "placeholder": "请选择",
564
+ // "required": true
565
+ // },
566
+ // {
567
+ // "label": "勘查结果",
568
+ // "bootstraped": "col-sm-3",
569
+ // "type": "select",
570
+ // "field": "f_checksurp_remark",
571
+ // "default": "请选择",
572
+ // "required": true,
573
+ // "options": [
574
+ // {
575
+ // "label": "合格",
576
+ // "value": "合格"
577
+ // },
578
+ // {
579
+ // "label": "不合格",
580
+ // "value": "不合格"
581
+ // }
582
+ // ]
583
+ // },
584
+ // {
585
+ // "label": "勘察日期",
586
+ // "bootstraped": "col-sm-3",
587
+ // "type": "datepicker",
588
+ // "field": "f_survey_time",
589
+ // "placeholder": "请选择",
590
+ // "required": true
591
+ // },
592
+ // {
593
+ // "label": "勘察意见",
594
+ // "type": "textarea",
595
+ // "field": "f_survey_remarks",
596
+ // "rows": 1
597
+ // },
598
+ // {
599
+ // "label": "勘察回复",
600
+ // "type": "textarea",
601
+ // "field": "f_survey_reply",
602
+ // "rows": 3
603
+ // }
604
+ // ],
605
+ // "buttons": [
606
+ // {
607
+ // "button_name": "保存"
608
+ // },
609
+ // {
610
+ // "button_name": "提交"
611
+ // }
612
+ // ]
613
+ // },
614
+ // {
615
+ // "title": "设计报价",
616
+ // "tables": [
617
+ // "t_apply"
618
+ // ],
619
+ // "fields": [
620
+ // {
621
+ // "label": "是否设计出图",
622
+ // "type": "select",
623
+ // "bootstraped": "col-sm-3",
624
+ // "field": "f_isdesign",
625
+ // "required": true,
626
+ // "options": [
627
+ // {
628
+ // "label": "是",
629
+ // "value": "是"
630
+ // },
631
+ // {
632
+ // "label": "否",
633
+ // "value": "否"
634
+ // }
635
+ // ]
636
+ // },
637
+ // {
638
+ // "label": "设计派工日期",
639
+ // "type": "datepicker",
640
+ // "bootstraped": "col-sm-3",
641
+ // "field": "f_design_start_date",
642
+ // "placeholder": "请选择",
643
+ // "disabled": false,
644
+ // "required": false
645
+ // },
646
+ // {
647
+ // "label": "预定完成日期",
648
+ // "bootstraped": "col-sm-3",
649
+ // "type": "datepicker",
650
+ // "field": "f_design_end_date",
651
+ // "placeholder": "请选择",
652
+ // "disabled": false,
653
+ // "required": false
654
+ // },
655
+ // {
656
+ // "label": "设计人员",
657
+ // "type": "input",
658
+ // "bootstraped": "col-sm-3",
659
+ // "field": "f_designer",
660
+ // "placeholder": "请输入",
661
+ // "readonly": false,
662
+ // "disabled": false,
663
+ // "required": false
664
+ // },
665
+ // {
666
+ // "label": "气表品牌",
667
+ // "type": "select",
668
+ // "bootstraped": "col-sm-3",
669
+ // "field": "f_meter_brand",
670
+ // "placeholder": "请选择",
671
+ // "required": false
672
+ // },
673
+ // {
674
+ // "label": "气表型号",
675
+ // "type": "select",
676
+ // "bootstraped": "col-sm-3",
677
+ // "field": "f_meter_style",
678
+ // "placeholder": "请选择",
679
+ // "required": true
680
+ // },
681
+ //
682
+ // {
683
+ // "label": "左右表",
684
+ // "type": "select",
685
+ // "bootstraped": "col-sm-3",
686
+ // "field": "f_aroundmeter",
687
+ // "readonly": false,
688
+ // "required": false
689
+ // },
690
+ // {
691
+ // "label": "工程安装费",
692
+ // "type": "input",
693
+ // "bootstraped": "col-sm-3",
694
+ // "field": "f_construction_cost",
695
+ // "required": false,
696
+ // "hidden": true
697
+ // },
698
+ // {
699
+ // "label": "材料费",
700
+ // "type": "input",
701
+ // "bootstraped": "col-sm-3",
702
+ // "field": "f_material_cost",
703
+ // "required": false,
704
+ // "hidden": true
705
+ // },
706
+ // {
707
+ // "label": "人工费",
708
+ // "type": "input",
709
+ // "bootstraped": "col-sm-3",
710
+ // "field": "f_labor_cost",
711
+ // "required": false,
712
+ // "hidden": true
713
+ // },
714
+ //
715
+ // {
716
+ // "label": "费用合计",
717
+ // "type": "input",
718
+ // "bootstraped": "col-sm-3",
719
+ // "field": "f_total_cost",
720
+ // "readonly": false,
721
+ // "required": true,
722
+ // "hidden": false
723
+ // }
724
+ // ],
725
+ // "buttons": [
726
+ // {
727
+ // "button_name": "保存"
728
+ // },
729
+ // {
730
+ // "button_name": "提交",
731
+ // "button_event": "合同信息"
732
+ // }
733
+ // ]
734
+ // },
735
+ // {
736
+ // "title": "报价审核",
737
+ // "tables": [
738
+ // "t_apply"
739
+ // ],
740
+ // "fields": [
741
+ // {
742
+ // "label": "工程安装费",
743
+ // "type": "input",
744
+ // "bootstraped": "col-sm-3",
745
+ // "field": "f_construction_cost",
746
+ // "readonly": false,
747
+ // "required": false,
748
+ // "hidden": true
749
+ // },
750
+ // {
751
+ // "label": "材料费",
752
+ // "type": "input",
753
+ // "bootstraped": "col-sm-3",
754
+ // "field": "f_material_cost",
755
+ // "readonly": false,
756
+ // "required": false,
757
+ // "hidden": true
758
+ // },
759
+ // {
760
+ // "label": "人工费",
761
+ // "type": "input",
762
+ // "bootstraped": "col-sm-3",
763
+ // "field": "f_labor_cost",
764
+ // "readonly": false,
765
+ // "required": false,
766
+ // "hidden": true
767
+ // },
768
+ //
769
+ // {
770
+ // "label": "费用合计",
771
+ // "type": "input",
772
+ // "bootstraped": "col-sm-3",
773
+ // "field": "f_total_cost",
774
+ // "readonly": false,
775
+ // "required": true,
776
+ // "hidden": false
777
+ // },
778
+ // {
779
+ // "label": "未结总金额",
780
+ // "type": "number",
781
+ // "bootstraped": "col-sm-3",
782
+ // "field": "f_unaccounts_money",
783
+ // "placeholder": "请输入",
784
+ // "readonly": false,
785
+ // "value": null,
786
+ // "disabled": false,
787
+ // "required": false
788
+ // },
789
+ // {
790
+ // "label": "图纸审核是否通过",
791
+ // "type": "radio",
792
+ // "bootstraped": "col-sm-6",
793
+ // "field": "f_agree_install",
794
+ // "disabled": false,
795
+ // "required": true,
796
+ // "items": [
797
+ // {
798
+ // "label": "是",
799
+ // "value": "是"
800
+ // },
801
+ // {
802
+ // "label": "否",
803
+ // "value": "否"
804
+ // }
805
+ // ]
806
+ // },
807
+ // {
808
+ // "label": "是否同意安装",
809
+ // "type": "radio",
810
+ // "bootstraped": "col-sm-6",
811
+ // "field": "f_agree_install",
812
+ // "disabled": false,
813
+ // "required": true,
814
+ // "items": [
815
+ // {
816
+ // "label": "是",
817
+ // "value": "是"
818
+ // },
819
+ // {
820
+ // "label": "否",
821
+ // "value": "否"
822
+ // }
823
+ // ]
824
+ // },
825
+ // {
826
+ // "label": "出图审核日期",
827
+ // "type": "datepicker",
828
+ // "field": "f_feecheck_date",
829
+ // "placeholder": "请选择",
830
+ // "required": false
831
+ // },
832
+ // {
833
+ // "label": "收费审核日期",
834
+ // "type": "datepicker",
835
+ // "field": "f_feecheck_date",
836
+ // "placeholder": "请选择",
837
+ // "required": false
838
+ // },
839
+ // {
840
+ // "label": "审核备注",
841
+ // "type": "textarea",
842
+ // "field": "f_feecheck_remarks",
843
+ // "row": 3
844
+ // }
845
+ // ],
846
+ // "buttons": [
847
+ // {
848
+ // "button_name": "保存"
849
+ // },
850
+ // {
851
+ // "button_name": "提交"
852
+ // }
853
+ // ]
854
+ // },
855
+ // {
856
+ // "title": "集体派单",
857
+ // "tables": [
858
+ // "t_apply"
859
+ // ],
860
+ // "fields": [
861
+ // {
862
+ // "label": "派工单号",
863
+ // "type": "input",
864
+ // "bootstraped": "col-sm-3",
865
+ // "field": "f_dispatched_number",
866
+ // "placeholder": "请输入",
867
+ // "readonly": false,
868
+ // "disabled": false,
869
+ // "required": false
870
+ // },
871
+ // {
872
+ // "label": "项目名称",
873
+ // "type": "input",
874
+ // "bootstraped": "col-sm-3",
875
+ //
876
+ // "field": "f_entry_name",
877
+ // "placeholder": "请输入",
878
+ // "readonly": false,
879
+ // "disabled": false,
880
+ // "required": false
881
+ // },
882
+ // {
883
+ // "label": "用气地点",
884
+ // "type": "input",
885
+ // "bootstraped": "col-sm-3",
886
+ // "field": "f_address",
887
+ // "placeholder": "请输入",
888
+ // "readonly": false,
889
+ // "disabled": false,
890
+ // "required": false
891
+ // },
892
+ // {
893
+ // "label": "申请时间",
894
+ // "type": "datepicker",
895
+ // "bootstraped": "col-sm-3",
896
+ // "field": "f_application_time",
897
+ // "readonly": false,
898
+ // "required": false
899
+ // },
900
+ // {
901
+ // "label": "联系人",
902
+ // "type": "input",
903
+ // "bootstraped": "col-sm-3",
904
+ // "field": "f_user_name",
905
+ // "placeholder": "请输入",
906
+ // "readonly": false,
907
+ // "disabled": false,
908
+ // "required": true
909
+ // },
910
+ // {
911
+ // "label": "联系电话",
912
+ // "type": "input",
913
+ // "bootstraped": "col-sm-3",
914
+ // "field": "f_phone",
915
+ // "placeholder": "请输入",
916
+ // "readonly": false,
917
+ // "disabled": false,
918
+ // "required": false
919
+ // },
920
+ // {
921
+ // "label": "合同总金额",
922
+ // "type": "number",
923
+ // "bootstraped": "col-sm-3",
924
+ // "field": "f_total_cost",
925
+ // "placeholder": "请输入",
926
+ // "readonly": false,
927
+ // "value": null,
928
+ // "disabled": false,
929
+ // "required": true
930
+ // },
931
+ // {
932
+ // "label": "累计缴费金额",
933
+ // "type": "number",
934
+ // "bootstraped": "col-sm-3",
935
+ // "field": "f_cumulative_money",
936
+ // "placeholder": "请输入",
937
+ // "readonly": false,
938
+ // "disabled": false,
939
+ // "required": true
940
+ // },
941
+ // {
942
+ // "label": "未结总金额",
943
+ // "type": "number",
944
+ // "bootstraped": "col-sm-3",
945
+ // "field": "f_unaccounts_money",
946
+ // "placeholder": "请输入",
947
+ // "readonly": false,
948
+ // "value": null,
949
+ // "disabled": false,
950
+ // "required": false
951
+ // },
952
+ // {
953
+ // "label": "发起时间",
954
+ // "type": "datepicker",
955
+ // "bootstraped": "col-sm-3",
956
+ // "field": "f_Initiation_time",
957
+ // "placeholder": "请输入",
958
+ // "readonly": false,
959
+ // "value": null,
960
+ // "disabled": false,
961
+ // "hide": true
962
+ // },
963
+ // {
964
+ // "label": "施工单位",
965
+ // "type": "select",
966
+ // "bootstraped": "col-sm-3",
967
+ // "field": "f_construction_unit",
968
+ // "required": false
969
+ // },
970
+ // {
971
+ // "label": "监理单位",
972
+ // "type": "select",
973
+ // "bootstraped": "col-sm-3",
974
+ // "field": "f_supervision_unit",
975
+ // "required": false
976
+ // },
977
+ // {
978
+ // "label": "设计单位",
979
+ // "type": "select",
980
+ // "bootstraped": "col-sm-3",
981
+ // "field": "f_design_unit",
982
+ // "required": false
983
+ // }
984
+ // ],
985
+ // "buttons": [
986
+ // {
987
+ // "button_name": "保存"
988
+ // },
989
+ // {
990
+ // "button_name": "提交",
991
+ // "button_person": {
992
+ // "button_event": "获取之前被下发人",
993
+ // "button_person_field": "f_survey_name"
994
+ // }
995
+ // }
996
+ // ]
997
+ // },
998
+ // {
999
+ // "title": "验收",
1000
+ // "mobile":"true",
1001
+ // "tables": [
1002
+ // "t_apply"
1003
+ // ],
1004
+ // "fields": [
1005
+ // {
1006
+ // "label": "小区名称",
1007
+ // "type": "select",
1008
+ // "bootstraped": "col-sm-4",
1009
+ // "field": "f_residential_area",
1010
+ // "placeholder": "请输入",
1011
+ // "disabled": false,
1012
+ // "required": true
1013
+ // },
1014
+ // {
1015
+ // "label": "小区地址",
1016
+ // "type": "input",
1017
+ // "bootstraped": "col-sm-4",
1018
+ // "field": "f_area_address",
1019
+ // "placeholder": "小区地址",
1020
+ // "disabled": false,
1021
+ // "required": true
1022
+ // },
1023
+ // {
1024
+ // "label": "小区类型",
1025
+ // "type": "select",
1026
+ // "field": "f_area_type",
1027
+ // "bootstraped": "col-sm-4",
1028
+ // "disabled": false,
1029
+ // "required": true,
1030
+ // "options": [
1031
+ // {
1032
+ // "label": "新建小区",
1033
+ // "value": "新建小区"
1034
+ // },
1035
+ // {
1036
+ // "label": "旧住宅",
1037
+ // "value": "旧住宅"
1038
+ // }
1039
+ // ]
1040
+ // },
1041
+ // {
1042
+ // "label": "用户数量",
1043
+ // "type": "input",
1044
+ // "field": "f_area_type_user",
1045
+ // "bootstraped": "col-sm-4",
1046
+ // "placeholder": "请输入",
1047
+ // "readonly": false,
1048
+ // "value": null,
1049
+ // "disabled": false,
1050
+ // "required": true
1051
+ // },
1052
+ // {
1053
+ // "label": "阀门井",
1054
+ // "type": "input",
1055
+ // "field": "f_valve_wells",
1056
+ // "bootstraped": "col-sm-4",
1057
+ // "placeholder": "",
1058
+ // "readonly": false,
1059
+ // "value": null,
1060
+ // "disabled": false,
1061
+ // "required": true
1062
+ // },
1063
+ // {
1064
+ // "label": "调压设施",
1065
+ // "type": "input",
1066
+ // "bootstraped": "col-sm-4",
1067
+ // "field": "f_regulating_facility",
1068
+ // "placeholder": "",
1069
+ // "readonly": false,
1070
+ // "disabled": false,
1071
+ // "required": true
1072
+ //
1073
+ // },
1074
+ // {
1075
+ // "label": "挂表位置",
1076
+ // "type": "select",
1077
+ // "bootstraped": "col-sm-4",
1078
+ // "field": "f_position",
1079
+ // "placeholder": "请输入",
1080
+ // "disabled": false,
1081
+ // "required": true,
1082
+ // "options": [
1083
+ // {
1084
+ // "label": "户内挂表",
1085
+ // "value": "户内挂表"
1086
+ // },
1087
+ // {
1088
+ // "label": "户外挂表",
1089
+ // "value": "户外挂表"
1090
+ // }
1091
+ // ]
1092
+ //
1093
+ // },
1094
+ // {
1095
+ // "label": "金属波纹软管灶具",
1096
+ // "type": "input",
1097
+ // "bootstraped": "col-sm-4",
1098
+ // "field": "f_metal_bellows",
1099
+ // "placeholder": "请输入",
1100
+ // "disabled": false,
1101
+ // "required": true
1102
+ // },
1103
+ // {
1104
+ // "label": "金属波纹软管热水器",
1105
+ // "type": "input",
1106
+ // "bootstraped": "col-sm-4",
1107
+ // "field": "f_metal_bellows_hot",
1108
+ // "placeholder": "请输入",
1109
+ // "disabled": false,
1110
+ // "required": true
1111
+ //
1112
+ // },
1113
+ //
1114
+ // {
1115
+ // "label": "表具",
1116
+ // "type": "select",
1117
+ // "bootstraped": "col-sm-4",
1118
+ // "field": "f_meter_brand",
1119
+ // "placeholder": "请输入",
1120
+ // "disabled": false,
1121
+ // "required": true
1122
+ // },
1123
+ // {
1124
+ // "label": "表具安装户数",
1125
+ // "type": "input",
1126
+ // "bootstraped": "col-sm-4",
1127
+ // "field": "f_meter_brand_install",
1128
+ // "placeholder": "请输入",
1129
+ // "disabled": false,
1130
+ // "required": true
1131
+ // },
1132
+ // {
1133
+ // "label": "表具未安装户数",
1134
+ // "type": "input",
1135
+ // "bootstraped": "col-sm-4",
1136
+ // "field": "f_meter_brand_install_not",
1137
+ // "placeholder": "请输入",
1138
+ // "disabled": false,
1139
+ // "required": true
1140
+ // },
1141
+ // {
1142
+ // "label": "户内尾阀",
1143
+ // "type": "select",
1144
+ // "bootstraped": "col-sm-4",
1145
+ // "field": "f_indoor_valve",
1146
+ // "placeholder": "请输入",
1147
+ // "disabled": false,
1148
+ // "required": true,
1149
+ // "options": [
1150
+ // {
1151
+ // "label": "F型双嘴尾阀",
1152
+ // "value": "F型双嘴尾阀"
1153
+ // },
1154
+ // {
1155
+ // "label": "双嘴尾阀",
1156
+ // "value": "双嘴尾阀"
1157
+ // },
1158
+ // {
1159
+ // "label": "单嘴尾阀",
1160
+ // "value": "单嘴尾阀"
1161
+ // }
1162
+ //
1163
+ //
1164
+ // ]
1165
+ // },
1166
+ // {
1167
+ // "label": "户内尾阀安装户数",
1168
+ // "type": "input",
1169
+ // "bootstraped": "col-sm-4",
1170
+ // "field": "f_indoor_valve_install",
1171
+ // "placeholder": "请输入",
1172
+ // "disabled": false,
1173
+ // "required": true
1174
+ // },
1175
+ // {
1176
+ // "label": "户内尾阀未安装户数",
1177
+ // "type": "input",
1178
+ // "bootstraped": "col-sm-4",
1179
+ // "field": "f_indoor_valve_install_not",
1180
+ // "placeholder": "请输入",
1181
+ // "disabled": false,
1182
+ // "required": true
1183
+ // },
1184
+ // {
1185
+ // "label": "户内自闭阀",
1186
+ // "type": "select",
1187
+ // "bootstraped": "col-sm-4",
1188
+ // "field": "f_close_valve",
1189
+ // "placeholder": "请输入",
1190
+ // "disabled": false,
1191
+ // "required": true,
1192
+ // "options": [
1193
+ // {
1194
+ // "label": "是",
1195
+ // "value": "是"
1196
+ // },
1197
+ // {
1198
+ // "label": "否",
1199
+ // "value": "否"
1200
+ // }
1201
+ //
1202
+ //
1203
+ // ]
1204
+ // },
1205
+ // {
1206
+ // "label": "户内自闭阀安装户数",
1207
+ // "type": "input",
1208
+ // "bootstraped": "col-sm-4",
1209
+ // "field": "f_close_valve_install",
1210
+ // "placeholder": "请输入",
1211
+ // "disabled": false,
1212
+ // "required": true
1213
+ // },
1214
+ // {
1215
+ // "label": "户内自闭阀未安装户数",
1216
+ // "type": "input",
1217
+ // "bootstraped": "col-sm-4",
1218
+ // "field": "f_close_valve_install_not",
1219
+ // "placeholder": "请输入",
1220
+ // "disabled": false,
1221
+ // "required": true
1222
+ // },
1223
+ //
1224
+ // {
1225
+ // "label": "验收备注",
1226
+ // "type": "textarea",
1227
+ // "field": "f_completed_remarks",
1228
+ // "row": 6
1229
+ // }
1230
+ // ],
1231
+ // "buttons": [
1232
+ // {
1233
+ // "button_name": "保存"
1234
+ // },
1235
+ // {
1236
+ // "button_name": "提交"
1237
+ // }
1238
+ // ]
1239
+ // },
1240
+ // {
1241
+ // "title": "通气",
1242
+ // "mobile":"true",
1243
+ // "tables": [
1244
+ // "t_apply"
1245
+ // ],
1246
+ // "fields": [
1247
+ // {
1248
+ // "label": "小区名称",
1249
+ // "type": "select",
1250
+ // "bootstraped": "col-sm-3",
1251
+ // "field": "f_residential_area",
1252
+ // "placeholder": "请输入",
1253
+ // "disabled": false,
1254
+ // "required": true
1255
+ // },
1256
+ // {
1257
+ // "label": "小区地址",
1258
+ // "type": "input",
1259
+ // "bootstraped": "col-sm-3",
1260
+ // "field": "f_area_address",
1261
+ // "placeholder": "小区地址",
1262
+ // "disabled": false,
1263
+ // "required": true
1264
+ // },
1265
+ // {
1266
+ // "label": "小区类型",
1267
+ // "type": "select",
1268
+ // "field": "f_area_type",
1269
+ // "bootstraped": "col-sm-3",
1270
+ // "disabled": false,
1271
+ // "required": true,
1272
+ // "options": [
1273
+ // {
1274
+ // "label": "新建小区",
1275
+ // "value": "新建小区"
1276
+ // },
1277
+ // {
1278
+ // "label": "旧住宅",
1279
+ // "value": "旧住宅"
1280
+ // }
1281
+ // ]
1282
+ // },
1283
+ // {
1284
+ // "label": "用户数量",
1285
+ // "type": "input",
1286
+ // "field": "f_area_type_user",
1287
+ // "bootstraped": "col-sm-3",
1288
+ // "placeholder": "请输入",
1289
+ // "readonly": false,
1290
+ // "value": null,
1291
+ // "disabled": false,
1292
+ // "required": true
1293
+ // },
1294
+ // {
1295
+ // "label": "阀门井",
1296
+ // "type": "input",
1297
+ // "field": "f_valve_wells",
1298
+ // "bootstraped": "col-sm-3",
1299
+ // "placeholder": "",
1300
+ // "readonly": false,
1301
+ // "value": null,
1302
+ // "disabled": false,
1303
+ // "required": true
1304
+ // },
1305
+ // {
1306
+ // "label": "调压设施",
1307
+ // "type": "input",
1308
+ // "bootstraped": "col-sm-3",
1309
+ // "field": "f_regulating_facility",
1310
+ // "placeholder": "",
1311
+ // "readonly": false,
1312
+ // "disabled": false,
1313
+ // "required": true
1314
+ //
1315
+ // },
1316
+ // {
1317
+ // "label": "挂表位置",
1318
+ // "type": "select",
1319
+ // "bootstraped": "col-sm-3",
1320
+ // "field": "f_position",
1321
+ // "placeholder": "请输入",
1322
+ // "disabled": false,
1323
+ // "required": true,
1324
+ // "options": [
1325
+ // {
1326
+ // "label": "户内挂表",
1327
+ // "value": "户内挂表"
1328
+ // },
1329
+ // {
1330
+ // "label": "户外挂表",
1331
+ // "value": "户外挂表"
1332
+ // }
1333
+ // ]
1334
+ //
1335
+ // },
1336
+ // {
1337
+ // "label": "金属波纹软管灶具",
1338
+ // "type": "input",
1339
+ // "bootstraped": "col-sm-3",
1340
+ // "field": "f_metal_bellows",
1341
+ // "placeholder": "请输入",
1342
+ // "disabled": false,
1343
+ // "required": true
1344
+ // },
1345
+ //
1346
+ //
1347
+ // {
1348
+ // "label": "表具",
1349
+ // "type": "select",
1350
+ // "bootstraped": "col-sm-3",
1351
+ // "field": "f_meter_brand",
1352
+ // "placeholder": "请输入",
1353
+ // "disabled": false,
1354
+ // "required": true
1355
+ // },
1356
+ // {
1357
+ // "label": "表具安装户数",
1358
+ // "type": "input",
1359
+ // "bootstraped": "col-sm-3",
1360
+ // "field": "f_meter_brand_install",
1361
+ // "placeholder": "请输入",
1362
+ // "disabled": false,
1363
+ // "required": true
1364
+ // },
1365
+ // {
1366
+ // "label": "表具未安装户数",
1367
+ // "type": "input",
1368
+ // "bootstraped": "col-sm-3",
1369
+ // "field": "f_meter_brand_install_not",
1370
+ // "placeholder": "请输入",
1371
+ // "disabled": false,
1372
+ // "required": true
1373
+ // },
1374
+ // {
1375
+ // "label": "金属波纹软管热水器",
1376
+ // "type": "input",
1377
+ // "bootstraped": "col-sm-3",
1378
+ // "field": "f_metal_bellows_hot",
1379
+ // "placeholder": "请输入",
1380
+ // "disabled": false,
1381
+ // "required": true
1382
+ //
1383
+ // },
1384
+ // {
1385
+ // "label": "户内尾阀",
1386
+ // "type": "select",
1387
+ // "bootstraped": "col-sm-3",
1388
+ // "field": "f_indoor_valve",
1389
+ // "placeholder": "请输入",
1390
+ // "disabled": false,
1391
+ // "required": true,
1392
+ // "options": [
1393
+ // {
1394
+ // "label": "F型双嘴尾阀",
1395
+ // "value": "F型双嘴尾阀"
1396
+ // },
1397
+ // {
1398
+ // "label": "双嘴尾阀",
1399
+ // "value": "双嘴尾阀"
1400
+ // },
1401
+ // {
1402
+ // "label": "单嘴尾阀",
1403
+ // "value": "单嘴尾阀"
1404
+ // }
1405
+ //
1406
+ //
1407
+ // ]
1408
+ // },
1409
+ // {
1410
+ // "label": "户内尾阀安装户数",
1411
+ // "type": "input",
1412
+ // "bootstraped": "col-sm-3",
1413
+ // "field": "f_indoor_valve_install",
1414
+ // "placeholder": "请输入",
1415
+ // "disabled": false,
1416
+ // "required": true
1417
+ // },
1418
+ // {
1419
+ // "label": "户内尾阀未安装户数",
1420
+ // "type": "input",
1421
+ // "bootstraped": "col-sm-3",
1422
+ // "field": "f_indoor_valve_install_not",
1423
+ // "placeholder": "请输入",
1424
+ // "disabled": false,
1425
+ // "required": true
1426
+ // },
1427
+ // {
1428
+ // "label": "合同总金额",
1429
+ // "type": "number",
1430
+ // "bootstraped": "col-sm-3",
1431
+ // "field": "f_total_cost",
1432
+ // "placeholder": "请输入",
1433
+ // "readonly": false,
1434
+ // "value": null,
1435
+ // "disabled": false,
1436
+ // "required": true
1437
+ // },
1438
+ //
1439
+ // {
1440
+ // "label": "户内自闭阀",
1441
+ // "type": "select",
1442
+ // "bootstraped": "col-sm-3",
1443
+ // "field": "f_close_valve",
1444
+ // "placeholder": "请输入",
1445
+ // "disabled": false,
1446
+ // "required": true,
1447
+ // "options": [
1448
+ // {
1449
+ // "label": "是",
1450
+ // "value": "是"
1451
+ // },
1452
+ // {
1453
+ // "label": "否",
1454
+ // "value": "否"
1455
+ // }
1456
+ //
1457
+ //
1458
+ // ]
1459
+ // },
1460
+ // {
1461
+ // "label": "户内自闭阀安装户数",
1462
+ // "type": "input",
1463
+ // "bootstraped": "col-sm-3",
1464
+ // "field": "f_close_valve_install",
1465
+ // "placeholder": "请输入",
1466
+ // "disabled": false,
1467
+ // "required": true
1468
+ // },
1469
+ // {
1470
+ // "label": "户内自闭阀未安装户数",
1471
+ // "type": "input",
1472
+ // "bootstraped": "col-sm-3",
1473
+ // "field": "f_close_valve_install_not",
1474
+ // "placeholder": "请输入",
1475
+ // "disabled": false,
1476
+ // "required": true
1477
+ // },
1478
+ // {
1479
+ // "label": "累计缴费金额",
1480
+ // "type": "number",
1481
+ // "bootstraped": "col-sm-3",
1482
+ // "field": "f_cumulative_money",
1483
+ // "placeholder": "请输入",
1484
+ // "readonly": false,
1485
+ // "disabled": false,
1486
+ // "required": true
1487
+ // },
1488
+ //
1489
+ // {
1490
+ // "label": "切断压力",
1491
+ // "type": "input",
1492
+ // "bootstraped": "col-sm-3",
1493
+ // "field": "f_qieduan_pressure",
1494
+ // "required": false
1495
+ // },
1496
+ // {
1497
+ // "label": "放散压力",
1498
+ // "type": "input",
1499
+ // "bootstraped": "col-sm-3",
1500
+ // "field": "f_fangsan_pressure",
1501
+ // "required": false
1502
+ // },
1503
+ // {
1504
+ // "label": "工况压力",
1505
+ // "type": "input",
1506
+ // "bootstraped": "col-sm-3",
1507
+ // "field": "f_gongkuang_pressure",
1508
+ // "required": false
1509
+ // },
1510
+ // {
1511
+ // "label": "未结总金额",
1512
+ // "type": "number",
1513
+ // "bootstraped": "col-sm-3",
1514
+ // "field": "f_unaccounts_money",
1515
+ // "placeholder": "请输入",
1516
+ // "readonly": false,
1517
+ // "value": null,
1518
+ // "disabled": false,
1519
+ // "required": false
1520
+ // },
1521
+ // {
1522
+ // "label": "通气人员",
1523
+ // "type": "input",
1524
+ // "bootstraped": "col-sm-3",
1525
+ //
1526
+ //
1527
+ // "field": "f_gas_name",
1528
+ // "placeholder": "请输入",
1529
+ // "readonly": false,
1530
+ // "value": null,
1531
+ // "disabled": false,
1532
+ // "required": false
1533
+ // },
1534
+ // {
1535
+ // "label": "通气时间",
1536
+ // "type": "datepicker",
1537
+ // "bootstraped": "col-sm-3",
1538
+ // "field": "f_gas_date",
1539
+ // "required": false,
1540
+ // "disabled": false,
1541
+ // "hide": true
1542
+ // },
1543
+ // {
1544
+ // "label": "备注",
1545
+ // "type": "textarea",
1546
+ // "bootstraped": "col-sm-12",
1547
+ // "field": "f_gas_remarks",
1548
+ // "required": false
1549
+ // }
1550
+ // ],
1551
+ // "buttons": [
1552
+ // {
1553
+ // "button_name": "保存"
1554
+ // },
1555
+ // {
1556
+ // "button_name": "提交"
1557
+ // }
1558
+ // ]
1559
+ // },
1560
+ // {
1561
+ // "title": "置换",
1562
+ // "tables": [
1563
+ // "t_apply"
1564
+ // ],
1565
+ // "fields": [
1566
+ // {
1567
+ // "label": "小区名称",
1568
+ // "type": "select",
1569
+ // "bootstraped": "col-sm-3",
1570
+ // "field": "f_residential_area",
1571
+ // "placeholder": "请输入",
1572
+ // "disabled": false,
1573
+ // "required": true
1574
+ // },
1575
+ // {
1576
+ // "label": "小区地址",
1577
+ // "type": "input",
1578
+ // "bootstraped": "col-sm-3",
1579
+ // "field": "f_area_address",
1580
+ // "placeholder": "小区地址",
1581
+ // "disabled": false,
1582
+ // "required": true
1583
+ // },
1584
+ // {
1585
+ // "label": "小区类型",
1586
+ // "type": "select",
1587
+ // "field": "f_area_type",
1588
+ // "bootstraped": "col-sm-3",
1589
+ // "disabled": false,
1590
+ // "required": true,
1591
+ // "options": [
1592
+ // {
1593
+ // "label": "新建小区",
1594
+ // "value": "新建小区"
1595
+ // },
1596
+ // {
1597
+ // "label": "旧住宅",
1598
+ // "value": "旧住宅"
1599
+ // }
1600
+ // ]
1601
+ // },
1602
+ // {
1603
+ // "label": "用户数量",
1604
+ // "type": "input",
1605
+ // "field": "f_area_type_user",
1606
+ // "bootstraped": "col-sm-3",
1607
+ // "placeholder": "请输入",
1608
+ // "readonly": false,
1609
+ // "value": null,
1610
+ // "disabled": false,
1611
+ // "required": true
1612
+ // },
1613
+ // {
1614
+ // "label": "阀门井",
1615
+ // "type": "input",
1616
+ // "field": "f_valve_wells",
1617
+ // "bootstraped": "col-sm-3",
1618
+ // "placeholder": "",
1619
+ // "readonly": false,
1620
+ // "value": null,
1621
+ // "disabled": false,
1622
+ // "required": true
1623
+ // },
1624
+ // {
1625
+ // "label": "调压设施",
1626
+ // "type": "input",
1627
+ // "bootstraped": "col-sm-3",
1628
+ // "field": "f_regulating_facility",
1629
+ // "placeholder": "",
1630
+ // "readonly": false,
1631
+ // "disabled": false,
1632
+ // "required": true
1633
+ //
1634
+ // },
1635
+ // {
1636
+ // "label": "挂表位置",
1637
+ // "type": "select",
1638
+ // "bootstraped": "col-sm-3",
1639
+ // "field": "f_position",
1640
+ // "placeholder": "请输入",
1641
+ // "disabled": false,
1642
+ // "required": true,
1643
+ // "options": [
1644
+ // {
1645
+ // "label": "户内挂表",
1646
+ // "value": "户内挂表"
1647
+ // },
1648
+ // {
1649
+ // "label": "户外挂表",
1650
+ // "value": "户外挂表"
1651
+ // }
1652
+ // ]
1653
+ //
1654
+ // },
1655
+ // {
1656
+ // "label": "金属波纹软管灶具",
1657
+ // "type": "input",
1658
+ // "bootstraped": "col-sm-3",
1659
+ // "field": "f_metal_bellows",
1660
+ // "placeholder": "请输入",
1661
+ // "disabled": false,
1662
+ // "required": true
1663
+ // },
1664
+ //
1665
+ //
1666
+ // {
1667
+ // "label": "表具",
1668
+ // "type": "select",
1669
+ // "bootstraped": "col-sm-3",
1670
+ // "field": "f_meter_brand",
1671
+ // "placeholder": "请输入",
1672
+ // "disabled": false,
1673
+ // "required": true
1674
+ // },
1675
+ // {
1676
+ // "label": "表具安装户数",
1677
+ // "type": "input",
1678
+ // "bootstraped": "col-sm-3",
1679
+ // "field": "f_meter_brand_install",
1680
+ // "placeholder": "请输入",
1681
+ // "disabled": false,
1682
+ // "required": true
1683
+ // },
1684
+ // {
1685
+ // "label": "表具未安装户数",
1686
+ // "type": "input",
1687
+ // "bootstraped": "col-sm-3",
1688
+ // "field": "f_meter_brand_install_not",
1689
+ // "placeholder": "请输入",
1690
+ // "disabled": false,
1691
+ // "required": true
1692
+ // },
1693
+ // {
1694
+ // "label": "金属波纹软管热水器",
1695
+ // "type": "input",
1696
+ // "bootstraped": "col-sm-3",
1697
+ // "field": "f_metal_bellows_hot",
1698
+ // "placeholder": "请输入",
1699
+ // "disabled": false,
1700
+ // "required": true
1701
+ //
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
+ // },
1728
+ // {
1729
+ // "label": "户内尾阀安装户数",
1730
+ // "type": "input",
1731
+ // "bootstraped": "col-sm-3",
1732
+ // "field": "f_indoor_valve_install",
1733
+ // "placeholder": "请输入",
1734
+ // "disabled": false,
1735
+ // "required": true
1736
+ // },
1737
+ // {
1738
+ // "label": "户内尾阀未安装户数",
1739
+ // "type": "input",
1740
+ // "bootstraped": "col-sm-3",
1741
+ // "field": "f_indoor_valve_install_not",
1742
+ // "placeholder": "请输入",
1743
+ // "disabled": false,
1744
+ // "required": true
1745
+ // },
1746
+ // {
1747
+ // "label": "合同总金额",
1748
+ // "type": "number",
1749
+ // "bootstraped": "col-sm-3",
1750
+ // "field": "f_total_cost",
1751
+ // "placeholder": "请输入",
1752
+ // "readonly": false,
1753
+ // "value": null,
1754
+ // "disabled": false,
1755
+ // "required": true
1756
+ // },
1757
+ //
1758
+ // {
1759
+ // "label": "户内自闭阀",
1760
+ // "type": "select",
1761
+ // "bootstraped": "col-sm-3",
1762
+ // "field": "f_close_valve",
1763
+ // "placeholder": "请输入",
1764
+ // "disabled": false,
1765
+ // "required": true,
1766
+ // "options": [
1767
+ // {
1768
+ // "label": "是",
1769
+ // "value": "是"
1770
+ // },
1771
+ // {
1772
+ // "label": "否",
1773
+ // "value": "否"
1774
+ // }
1775
+ //
1776
+ //
1777
+ // ]
1778
+ // },
1779
+ // {
1780
+ // "label": "户内自闭阀安装户数",
1781
+ // "type": "input",
1782
+ // "bootstraped": "col-sm-3",
1783
+ // "field": "f_close_valve_install",
1784
+ // "placeholder": "请输入",
1785
+ // "disabled": false,
1786
+ // "required": true
1787
+ // },
1788
+ // {
1789
+ // "label": "户内自闭阀未安装户数",
1790
+ // "type": "input",
1791
+ // "bootstraped": "col-sm-3",
1792
+ // "field": "f_close_valve_install_not",
1793
+ // "placeholder": "请输入",
1794
+ // "disabled": false,
1795
+ // "required": true
1796
+ // },
1797
+ // {
1798
+ // "label": "累计缴费金额",
1799
+ // "type": "number",
1800
+ // "bootstraped": "col-sm-3",
1801
+ // "field": "f_cumulative_money",
1802
+ // "placeholder": "请输入",
1803
+ // "readonly": false,
1804
+ // "disabled": false,
1805
+ // "required": true
1806
+ // },
1807
+ //
1808
+ // {
1809
+ // "label": "切断压力",
1810
+ // "type": "input",
1811
+ // "bootstraped": "col-sm-3",
1812
+ // "field": "f_qieduan_pressure",
1813
+ // "required": false
1814
+ // },
1815
+ // {
1816
+ // "label": "放散压力",
1817
+ // "type": "input",
1818
+ // "bootstraped": "col-sm-3",
1819
+ // "field": "f_fangsan_pressure",
1820
+ // "required": false
1821
+ // },
1822
+ // {
1823
+ // "label": "工况压力",
1824
+ // "type": "input",
1825
+ // "bootstraped": "col-sm-3",
1826
+ // "field": "f_gongkuang_pressure",
1827
+ // "required": false
1828
+ // },
1829
+ // {
1830
+ // "label": "未结总金额",
1831
+ // "type": "number",
1832
+ // "bootstraped": "col-sm-3",
1833
+ // "field": "f_unaccounts_money",
1834
+ // "placeholder": "请输入",
1835
+ // "readonly": false,
1836
+ // "value": null,
1837
+ // "disabled": false,
1838
+ // "required": false
1839
+ // },
1840
+ // {
1841
+ // "label": "通气日期",
1842
+ // "type": "datepicker",
1843
+ // "bootstraped": "col-sm-3",
1844
+ // "field": "f_gas_date",
1845
+ // "readonly": false,
1846
+ // "required": false
1847
+ // },
1848
+ // {
1849
+ // "label": "通气人员",
1850
+ // "type": "input",
1851
+ // "bootstraped": "col-sm-3",
1852
+ //
1853
+ //
1854
+ // "field": "f_gas_name",
1855
+ // "placeholder": "请输入",
1856
+ // "readonly": false,
1857
+ // "value": null,
1858
+ // "disabled": false,
1859
+ // "required": false
1860
+ // },
1861
+ // {
1862
+ // "label": "通气备注",
1863
+ // "type": "textarea",
1864
+ // "bootstraped": "col-sm-12",
1865
+ //
1866
+ //
1867
+ // "field": "f_gas_remarks",
1868
+ // "rows": 2,
1869
+ // "readonly": false
1870
+ // }
1871
+ // ],
1872
+ // "buttons": [
1873
+ // {
1874
+ // "button_name": "保存"
1875
+ // },
1876
+ // {
1877
+ // "button_name": "提交"
1878
+ // }
1879
+ // ]
1880
+ // },
1881
+ // {
1882
+ // "title": "完工",
1883
+ // "tables": ["t_apply"],
1884
+ // "fields": [
1885
+ // ]
1886
+ // },
1887
+ // {
1888
+ // "title": "报装申请",
1889
+ // "tables": [
1890
+ // "t_apply"
1891
+ // ],
1892
+ // "fields": [
1893
+ // {
1894
+ // "label": "申请时间",
1895
+ // "type": "datepicker",
1896
+ // "bootstraped": "col-sm-3",
1897
+ // "field": "f_application_time",
1898
+ // "readonly": false,
1899
+ // "required": false,
1900
+ // "hidden": true
1901
+ // },
1902
+ // {
1903
+ // "label": "报装来源",
1904
+ // "type": "select",
1905
+ // "bootstraped": "col-sm-3",
1906
+ // "field": "f_apply_source",
1907
+ // "readonly": false,
1908
+ // "required": true,
1909
+ // "hidden": false,
1910
+ // "options": [
1911
+ // {
1912
+ // "label": "燃气系统",
1913
+ // "value": "燃气系统"
1914
+ // },
1915
+ // {
1916
+ // "label": "微信",
1917
+ // "value": "微信"
1918
+ // }
1919
+ // ]
1920
+ // },
1921
+ // {
1922
+ // "label": "联系人",
1923
+ // "type": "input",
1924
+ // "bootstraped": "col-sm-3",
1925
+ // "field": "f_user_name",
1926
+ // "placeholder": "请输入",
1927
+ // "readonly": false,
1928
+ // "disabled": false,
1929
+ // "required": true
1930
+ // },
1931
+ // {
1932
+ // "label": "电话号码",
1933
+ // "type": "tel",
1934
+ // "bootstraped": "col-sm-3",
1935
+ // "field": "f_phone",
1936
+ // "placeholder": "请输入",
1937
+ // "required": true
1938
+ // },
1939
+ // {
1940
+ // "label": "报建类型",
1941
+ // "type": "select",
1942
+ // "bootstraped": "col-sm-3",
1943
+ // "field": "f_apply_type",
1944
+ // "default": "个人报建",
1945
+ // "placeholder": "请输入",
1946
+ // "hidden": true,
1947
+ // "required": true
1948
+ // },
1949
+ // {
1950
+ // "label": "业务类型",
1951
+ // "type": "select",
1952
+ // "bootstraped": "col-sm-3",
1953
+ // "field": "f_work_type",
1954
+ // "readonly": false,
1955
+ // "required": true,
1956
+ // "options": [
1957
+ // {
1958
+ // "label": "新报装",
1959
+ // "value": "新报装"
1960
+ // },
1961
+ // {
1962
+ // "label": "改管",
1963
+ // "value": "改管"
1964
+ // }
1965
+ // ]
1966
+ // },
1967
+ // {
1968
+ // "label": "用户类型",
1969
+ // "type": "select",
1970
+ // "bootstraped": "col-sm-3",
1971
+ // "field": "f_user_type",
1972
+ // "readonly": false,
1973
+ // "required": true
1974
+ // },
1975
+ // {
1976
+ // "label": "县/区",
1977
+ // "type": "select",
1978
+ // "bootstraped": "col-sm-3",
1979
+ // "field": "f_area",
1980
+ // "placeholder": "请输入",
1981
+ // "required": true
1982
+ // },
1983
+ // {
1984
+ // "label": "街道名称",
1985
+ // "type": "select",
1986
+ // "bootstraped": "col-sm-3",
1987
+ // "field": "f_street",
1988
+ // "placeholder": "请输入",
1989
+ // "required": true
1990
+ // },
1991
+ // {
1992
+ // "label": "小区名称",
1993
+ // "type": "select",
1994
+ // "bootstraped": "col-sm-3",
1995
+ // "field": "f_residential_area",
1996
+ // "placeholder": "请输入",
1997
+ // "disabled": false,
1998
+ // "required": true
1999
+ // },
2000
+ // {
2001
+ // "label": "楼号",
2002
+ // "type": "input",
2003
+ // "bootstraped": "col-sm-3",
2004
+ // "field": "f_building",
2005
+ // "placeholder": "请输入",
2006
+ // "disabled": false
2007
+ // },
2008
+ // {
2009
+ // "label": "单元号",
2010
+ // "type": "input",
2011
+ // "bootstraped": "col-sm-3",
2012
+ // "field": "f_unit",
2013
+ // "placeholder": "请输入",
2014
+ // "disabled": false
2015
+ // },
2016
+ // {
2017
+ // "label": "楼层",
2018
+ // "type": "input",
2019
+ // "bootstraped": "col-sm-3",
2020
+ // "field": "f_floor",
2021
+ // "placeholder": "请输入",
2022
+ // "disabled": false
2023
+ // },
2024
+ // {
2025
+ // "label": "门牌号",
2026
+ // "type": "input",
2027
+ // "bootstraped": "col-sm-3",
2028
+ // "field": "f_room",
2029
+ // "placeholder": "请输入",
2030
+ // "disabled": false
2031
+ // },
2032
+ // {
2033
+ // "label": "证件类型",
2034
+ // "type": "select",
2035
+ // "bootstraped": "col-sm-3",
2036
+ // "field": "f_credentials",
2037
+ // "placeholder": "请输入",
2038
+ // "required": true,
2039
+ // "options": [
2040
+ // {
2041
+ // "label": "身份证",
2042
+ // "value": "身份证"
2043
+ // },
2044
+ // {
2045
+ // "label": "房产证",
2046
+ // "value": "房产证"
2047
+ // },
2048
+ // {
2049
+ // "label": "军官证",
2050
+ // "value": "军官证"
2051
+ // }
2052
+ // ]
2053
+ // },
2054
+ //
2055
+ // {
2056
+ // "label": "勘查人员",
2057
+ // "type": "input",
2058
+ // "hidden": true,
2059
+ // "bootstraped": "col-sm-3",
2060
+ // "field": "f_survey_name",
2061
+ // "default": "无",
2062
+ // "display":false,
2063
+ // "readonly": false,
2064
+ // "required": false
2065
+ // },
2066
+ // {
2067
+ // "label": "证件号码",
2068
+ // "type": "input",
2069
+ // "bootstraped": "col-sm-3",
2070
+ // "field": "f_idnumber",
2071
+ // "placeholder": "请输入",
2072
+ // "required": true
2073
+ // },
2074
+ // {
2075
+ // "label": "项目名称",
2076
+ // "type": "input",
2077
+ // "bootstraped": "col-sm-3",
2078
+ //
2079
+ //
2080
+ // "field": "f_entry_name",
2081
+ // "placeholder": "请输入",
2082
+ // "readonly": false,
2083
+ // "required": false
2084
+ // },
2085
+ // {
2086
+ // "label": "用户名称",
2087
+ // "type": "input",
2088
+ // "bootstraped": "col-sm-3",
2089
+ //
2090
+ //
2091
+ // "field": "f_company_name",
2092
+ // "placeholder": "请输入",
2093
+ // "readonly": false
2094
+ // },
2095
+ //
2096
+ // {
2097
+ // "label": "地址",
2098
+ // "type": "input",
2099
+ // "bootstraped": "col-sm-12",
2100
+ //
2101
+ //
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": false,
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
+ // ],
2155
+ // "buttons": [
2156
+ //
2157
+ // {
2158
+ // "button_name": "打印回单"
2159
+ // },
2160
+ // {
2161
+ // "button_name": "提交"
2162
+ // }
2163
+ // ]
2164
+ // },
2165
+ // {
2166
+ // "title": "现场勘查人员分配",
2167
+ // "tables": [
2168
+ // "t_apply"
2169
+ // ],
2170
+ // "fields": [
2171
+ // {
2172
+ // "label": "联系人",
2173
+ // "type": "input",
2174
+ // "bootstraped": "col-sm-3",
2175
+ // "field": "f_user_name",
2176
+ // "placeholder": "请输入",
2177
+ // "readonly": false,
2178
+ // "value": null,
2179
+ // "disabled": false,
2180
+ // "required": true
2181
+ // },
2182
+ // {
2183
+ // "label": "报建类型",
2184
+ // "type": "select",
2185
+ // "bootstraped": "col-sm-3",
2186
+ // "field": "f_apply_type",
2187
+ // "placeholder": "请输入",
2188
+ // "readonly": false,
2189
+ // "disabled": false,
2190
+ // "hidden": true,
2191
+ // "value": null,
2192
+ // "options": [
2193
+ // ]
2194
+ // },
2195
+ // {
2196
+ // "label": "电话号码",
2197
+ // "type": "tel",
2198
+ // "bootstraped": "col-sm-3",
2199
+ // "field": "f_phone",
2200
+ // "placeholder": "请输入",
2201
+ // "readonly": false,
2202
+ // "value": null,
2203
+ // "disabled": false,
2204
+ // "required": true
2205
+ // },
2206
+ // {
2207
+ // "label": "用户类型",
2208
+ // "type": "select",
2209
+ // "bootstraped": "col-sm-3",
2210
+ // "field": "f_user_type",
2211
+ // "placeholder": "请输入",
2212
+ // "readonly": false,
2213
+ // "disabled": false,
2214
+ // "required": true,
2215
+ // "value": null,
2216
+ // "options": [
2217
+ // ]
2218
+ // },
2219
+ // {
2220
+ // "label": "勘察人员",
2221
+ // "type": "select",
2222
+ // "bootstraped": "col-sm-3",
2223
+ // "field": "f_survey_name",
2224
+ // "placeholder": "请输入",
2225
+ // "readonly": false,
2226
+ // "value": "默认",
2227
+ // "disabled": false,
2228
+ // "required": true
2229
+ // },
2230
+ // {
2231
+ // "label": "备用电话",
2232
+ // "type": "input",
2233
+ // "bootstraped": "col-sm-3",
2234
+ // "field": "f_phone2",
2235
+ // "placeholder": "请输入",
2236
+ // "readonly": false,
2237
+ // "value": null,
2238
+ // "disabled": false,
2239
+ // "required": false
2240
+ // },
2241
+ // {
2242
+ // "label": "安装户数",
2243
+ // "type": "number",
2244
+ // "bootstraped": "col-sm-3",
2245
+ // "field": "f_install_num",
2246
+ // "placeholder": "请输入",
2247
+ // "readonly": false,
2248
+ // "value": 1,
2249
+ // "default": 1,
2250
+ // "disabled": false,
2251
+ // "required": true
2252
+ // },
2253
+ // {
2254
+ // "label": "勘查日期",
2255
+ // "type": "datepicker",
2256
+ // "bootstraped": "col-sm-3",
2257
+ // "field": "f_survey_time",
2258
+ // "readonly": true
2259
+ // },
2260
+ // {
2261
+ // "label": "证件类型",
2262
+ // "type": "select",
2263
+ // "bootstraped": "col-sm-3",
2264
+ // "field": "f_credentials",
2265
+ // "placeholder": "请输入",
2266
+ // "readonly": false,
2267
+ // "required": true,
2268
+ // "value": "1",
2269
+ // "options": [
2270
+ // ]
2271
+ // },
2272
+ // {
2273
+ // "label": "证件号码",
2274
+ // "type": "input",
2275
+ // "bootstraped": "col-sm-3",
2276
+ // "field": "f_idnumber",
2277
+ // "placeholder": "请输入",
2278
+ // "readonly": false,
2279
+ // "value": null,
2280
+ // "disabled": false,
2281
+ // "required": false
2282
+ // },
2283
+ // {
2284
+ // "label": "县/区",
2285
+ // "type": "select",
2286
+ // "bootstraped": "col-sm-3",
2287
+ // "field": "f_area",
2288
+ // "placeholder": "请输入",
2289
+ // "required": true
2290
+ // },
2291
+ // {
2292
+ // "label": "街道名称",
2293
+ // "type": "input",
2294
+ // "bootstraped": "col-sm-3",
2295
+ // "field": "f_street",
2296
+ // "placeholder": "请输入",
2297
+ // "required": true
2298
+ // },
2299
+ // {
2300
+ // "label": "小区名称",
2301
+ // "type": "input",
2302
+ // "bootstraped": "col-sm-3",
2303
+ // "field": "f_residential_area",
2304
+ // "placeholder": "请输入",
2305
+ // "disabled": false,
2306
+ // "required": true
2307
+ // },
2308
+ // {
2309
+ // "label": "楼号",
2310
+ // "type": "input",
2311
+ // "bootstraped": "col-sm-3",
2312
+ // "field": "f_building",
2313
+ // "placeholder": "请输入",
2314
+ // "disabled": false
2315
+ // },
2316
+ // {
2317
+ // "label": "单元号",
2318
+ // "type": "input",
2319
+ // "bootstraped": "col-sm-3",
2320
+ // "field": "f_unit",
2321
+ // "placeholder": "请输入",
2322
+ // "disabled": false
2323
+ // },
2324
+ // {
2325
+ // "label": "楼层",
2326
+ // "type": "input",
2327
+ // "bootstraped": "col-sm-3",
2328
+ // "field": "f_floor",
2329
+ // "placeholder": "请输入",
2330
+ // "disabled": false
2331
+ // },
2332
+ // {
2333
+ // "label": "门牌号",
2334
+ // "type": "input",
2335
+ // "bootstraped": "col-sm-3",
2336
+ // "field": "f_room",
2337
+ // "placeholder": "请输入",
2338
+ // "disabled": false
2339
+ // },
2340
+ // {
2341
+ // "label": "项目名称",
2342
+ // "type": "input",
2343
+ // "bootstraped": "col-sm-3",
2344
+ // "field": "f_entry_name",
2345
+ // "placeholder": "请输入",
2346
+ // "readonly": false,
2347
+ // "value": null,
2348
+ // "disabled": false,
2349
+ // "required": false
2350
+ // },
2351
+ // {
2352
+ // "label": "用户名称",
2353
+ // "type": "input",
2354
+ // "bootstraped": "col-sm-3",
2355
+ // "field": "f_company_name",
2356
+ // "placeholder": "请输入",
2357
+ // "readonly": false,
2358
+ // "value": null,
2359
+ // "disabled": false
2360
+ // },
2361
+ // {
2362
+ // "label": "地址",
2363
+ // "type": "input",
2364
+ // "bootstraped": "col-sm-12",
2365
+ // "field": "f_address",
2366
+ // "placeholder": "请输入",
2367
+ // "disabled": false,
2368
+ // "readonly": true
2369
+ // },
2370
+ //
2371
+ // {
2372
+ // "label": "备注",
2373
+ // "type": "textarea",
2374
+ // "bootstraped": "col-sm-12",
2375
+ // "field": "t_remarks",
2376
+ // "placeholder": "",
2377
+ // "rows": 2,
2378
+ // "readonly": false,
2379
+ // "required": false
2380
+ // }
2381
+ // ],
2382
+ // "buttons": [
2383
+ // {
2384
+ // "button_name": "保存"
2385
+ // },
2386
+ // {
2387
+ // "button_name": "提交"
2388
+ // }
2389
+ // ]
2390
+ // },
2391
+ // {
2392
+ // "title": "现场勘查定价",
2393
+ // "mobile":"true",
2394
+ // "tables": [
2395
+ // "t_apply"
2396
+ // ],
2397
+ // "fields": [
2398
+ // {
2399
+ // "label": "实际可安装用户数",
2400
+ // "type": "input",
2401
+ // "field": "f_install_num",
2402
+ // "bootstraped": "col-sm-3",
2403
+ // "default": 1,
2404
+ // "required": false
2405
+ // },
2406
+ // {
2407
+ // "label": "缴费户数",
2408
+ // "type": "input",
2409
+ // "bootstraped": "col-sm-3",
2410
+ // "field": "f_payfee_num",
2411
+ // "default": 1,
2412
+ // "required": false
2413
+ // },
2414
+ // {
2415
+ // "label": "气价名称",
2416
+ // "type": "select",
2417
+ // "bootstraped": "col-sm-3",
2418
+ // "field": "f_stair_price_name",
2419
+ // "placeholder": "请选择",
2420
+ // "required": true
2421
+ // },
2422
+ // {
2423
+ // "label": "勘察人员",
2424
+ // "type": "select",
2425
+ // "bootstraped": "col-sm-3",
2426
+ // "field": "f_survey_name",
2427
+ // "placeholder": "请选择",
2428
+ // "required": true
2429
+ // },
2430
+ // {
2431
+ // "label": "勘察日期",
2432
+ // "type": "datepicker",
2433
+ // "bootstraped": "col-sm-3",
2434
+ // "field": "f_survey_time",
2435
+ // "placeholder": "请选择",
2436
+ // "required": true
2437
+ // },
2438
+ // {
2439
+ // "label": "工程安装费",
2440
+ // "type": "number",
2441
+ // "bootstraped": "col-sm-3",
2442
+ // "field": "f_construction_cost",
2443
+ // "required": true
2444
+ // },
2445
+ // {
2446
+ // "label": "材料费",
2447
+ // "type": "number",
2448
+ // "bootstraped": "col-sm-3",
2449
+ // "field": "f_material_cost",
2450
+ // "required": true
2451
+ // },
2452
+ // {
2453
+ // "label": "人工费",
2454
+ // "type": "number",
2455
+ // "bootstraped": "col-sm-3",
2456
+ // "field": "f_labor_cost",
2457
+ // "required": true
2458
+ // },
2459
+ // {
2460
+ // "label": "费用合计",
2461
+ // "type": "number",
2462
+ // "bootstraped": "col-sm-3",
2463
+ // "field": "f_total_cost",
2464
+ // "readonly": true,
2465
+ // "required": true,
2466
+ // "hidden": false
2467
+ // },
2468
+ // {
2469
+ // "label": "未结总金额",
2470
+ // "type": "number",
2471
+ // "bootstraped": "col-sm-3",
2472
+ // "field": "f_unaccounts_money",
2473
+ // "placeholder": "请输入",
2474
+ // "readonly": true,
2475
+ // "disabled": false,
2476
+ // "required": false,
2477
+ // "hidden": true
2478
+ // },
2479
+ // {
2480
+ // "label": "勘查结果",
2481
+ // "type": "select",
2482
+ // "bootstraped": "col-sm-3",
2483
+ // "field": "f_checksurp_remark",
2484
+ // "placeholder": "请选择",
2485
+ // "required": true,
2486
+ // "options": [
2487
+ // {
2488
+ // "label": "合格",
2489
+ // "value": "合格"
2490
+ // },
2491
+ // {
2492
+ // "label": "不合格",
2493
+ // "value": "不合格"
2494
+ // }
2495
+ // ]
2496
+ // },
2497
+ // {
2498
+ // "label": "勘察意见",
2499
+ // "type": "textarea",
2500
+ // "field": "f_survey_remarks",
2501
+ // "rows": 1
2502
+ // },
2503
+ // {
2504
+ // "label": "勘察回复",
2505
+ // "type": "textarea",
2506
+ // "field": "f_survey_reply",
2507
+ // "rows": 3
2508
+ // }
2509
+ // ],
2510
+ // "buttons": [
2511
+ // {
2512
+ // "button_name": "保存"
2513
+ // },
2514
+ // {
2515
+ // "button_name": "提交",
2516
+ // "button_event": "合同信息"
2517
+ // }
2518
+ // ]
2519
+ // },
2520
+ // {
2521
+ // "title": "派单",
2522
+ // "tables": [
2523
+ // "t_apply"
2524
+ // ],
2525
+ // "fields": [
2526
+ // {
2527
+ // "label": "派工单号",
2528
+ // "type": "input",
2529
+ // "bootstraped": "col-sm-3",
2530
+ // "field": "f_dispatched_number",
2531
+ // "placeholder": "请输入",
2532
+ // "readonly": false,
2533
+ // "disabled": false,
2534
+ // "required": false
2535
+ // },
2536
+ // {
2537
+ // "label": "项目名称",
2538
+ // "type": "input",
2539
+ // "bootstraped": "col-sm-3",
2540
+ //
2541
+ // "field": "f_entry_name",
2542
+ // "placeholder": "请输入",
2543
+ // "readonly": false,
2544
+ // "disabled": false,
2545
+ // "required": false
2546
+ // },
2547
+ // {
2548
+ // "label": "用气地点",
2549
+ // "type": "input",
2550
+ // "bootstraped": "col-sm-3",
2551
+ // "field": "f_address",
2552
+ // "placeholder": "请输入",
2553
+ // "readonly": false,
2554
+ // "disabled": false,
2555
+ // "required": false
2556
+ // },
2557
+ // {
2558
+ // "label": "申请时间",
2559
+ // "type": "datepicker",
2560
+ // "bootstraped": "col-sm-3",
2561
+ // "field": "f_application_time",
2562
+ // "readonly": false,
2563
+ // "required": false
2564
+ // },
2565
+ // {
2566
+ // "label": "联系人",
2567
+ // "type": "input",
2568
+ // "bootstraped": "col-sm-3",
2569
+ // "field": "f_user_name",
2570
+ // "placeholder": "请输入",
2571
+ // "readonly": false,
2572
+ // "disabled": false,
2573
+ // "required": true
2574
+ // },
2575
+ // {
2576
+ // "label": "联系电话",
2577
+ // "type": "input",
2578
+ // "bootstraped": "col-sm-3",
2579
+ // "field": "f_phone",
2580
+ // "placeholder": "请输入",
2581
+ // "readonly": false,
2582
+ // "disabled": false,
2583
+ // "required": false
2584
+ // },
2585
+ // {
2586
+ // "label": "证件号码",
2587
+ // "type": "input",
2588
+ // "bootstraped": "col-sm-3",
2589
+ // "field": "f_idnumber",
2590
+ // "placeholder": "请输入",
2591
+ // "required": false
2592
+ // },
2593
+ // {
2594
+ // "label": "合同总金额",
2595
+ // "type": "number",
2596
+ // "bootstraped": "col-sm-3",
2597
+ // "field": "f_total_cost",
2598
+ // "placeholder": "请输入",
2599
+ // "readonly": false,
2600
+ // "value": null,
2601
+ // "disabled": false,
2602
+ // "required": true
2603
+ // },
2604
+ // {
2605
+ // "label": "累计缴费金额",
2606
+ // "type": "number",
2607
+ // "bootstraped": "col-sm-3",
2608
+ // "field": "f_cumulative_money",
2609
+ // "placeholder": "请输入",
2610
+ // "readonly": false,
2611
+ // "disabled": false,
2612
+ // "required": true
2613
+ // },
2614
+ // {
2615
+ // "label": "未结总金额",
2616
+ // "type": "number",
2617
+ // "bootstraped": "col-sm-3",
2618
+ // "field": "f_unaccounts_money",
2619
+ // "placeholder": "请输入",
2620
+ // "readonly": false,
2621
+ // "value": null,
2622
+ // "disabled": false,
2623
+ // "required": false
2624
+ // },
2625
+ // {
2626
+ // "label": "发起时间",
2627
+ // "type": "datepicker",
2628
+ // "bootstraped": "col-sm-3",
2629
+ // "field": "f_Initiation_time",
2630
+ // "placeholder": "请输入",
2631
+ // "readonly": false,
2632
+ // "value": null,
2633
+ // "disabled": false,
2634
+ // "hide": true
2635
+ // },
2636
+ // {
2637
+ // "label": "施工单位",
2638
+ // "type": "select",
2639
+ // "bootstraped": "col-sm-3",
2640
+ // "field": "f_construction_unit",
2641
+ // "required": false
2642
+ // }
2643
+ // ],
2644
+ // "buttons": [
2645
+ // {
2646
+ // "button_name": "保存"
2647
+ // },
2648
+ // {
2649
+ // "button_name": "提交"
2650
+ // }
2651
+ //
2652
+ // ]
2653
+ // },
2654
+ // {
2655
+ // "title": "安装通气",
2656
+ // "mobile":"true",
2657
+ // "tables": [
2658
+ // "t_apply"
2659
+ // ],
2660
+ // "fields": [
2661
+ // {
2662
+ // "label": "合同总金额",
2663
+ // "type": "number",
2664
+ // "bootstraped": "col-sm-3",
2665
+ // "field": "f_total_cost",
2666
+ // "placeholder": "请输入",
2667
+ // "readonly": false,
2668
+ // "value": null,
2669
+ // "disabled": false,
2670
+ // "required": true
2671
+ // },
2672
+ // {
2673
+ // "label": "累计缴费金额",
2674
+ // "type": "number",
2675
+ // "bootstraped": "col-sm-3",
2676
+ // "field": "f_cumulative_money",
2677
+ // "placeholder": "请输入",
2678
+ // "readonly": false,
2679
+ // "disabled": false,
2680
+ // "required": true
2681
+ // },
2682
+ // {
2683
+ // "label": "未结总金额",
2684
+ // "type": "number",
2685
+ // "bootstraped": "col-sm-3",
2686
+ // "field": "f_unaccounts_money",
2687
+ // "placeholder": "请输入",
2688
+ // "readonly": false,
2689
+ // "value": null,
2690
+ // "disabled": false,
2691
+ // "required": false
2692
+ // },
2693
+ // {
2694
+ // "label": "气表品牌",
2695
+ // "type": "select",
2696
+ // "bootstraped": "col-sm-3",
2697
+ // "field": "f_meter_brand",
2698
+ // "placeholder": "请选择",
2699
+ // "required": false
2700
+ // },
2701
+ // {
2702
+ // "label": "气表型号",
2703
+ // "type": "select",
2704
+ // "bootstraped": "col-sm-3",
2705
+ // "field": "f_meter_style",
2706
+ // "required": true
2707
+ // },
2708
+ // {
2709
+ // "label": "表号",
2710
+ // "type": "input",
2711
+ // "bootstraped": "col-sm-3",
2712
+ // "field": "f_meternumber",
2713
+ // "required": false
2714
+ // },
2715
+ // {
2716
+ // "label": "左右表",
2717
+ // "type": "select",
2718
+ // "bootstraped": "col-sm-3",
2719
+ // "field": "f_derection",
2720
+ // "readonly": false,
2721
+ // "required": false
2722
+ // },
2723
+ // {
2724
+ // "label": "项目名称",
2725
+ // "type": "input",
2726
+ // "hidden": true,
2727
+ // "bootstraped": "col-sm-3",
2728
+ // "field": "f_entry_name",
2729
+ // "default": "无",
2730
+ // "display":false,
2731
+ // "readonly": false,
2732
+ // "required": false
2733
+ // },
2734
+ // {
2735
+ // "label": "验收结果",
2736
+ // "type": "select",
2737
+ // "bootstraped": "col-sm-3",
2738
+ // "field": "f_check_indoorproject",
2739
+ // "default": "请选择",
2740
+ // "display":false,
2741
+ // "required": true,
2742
+ // "options": [
2743
+ // {
2744
+ // "label": "合格",
2745
+ // "value": "合格"
2746
+ // },
2747
+ // {
2748
+ // "label": "不合格",
2749
+ // "value": "不合格"
2750
+ // }
2751
+ // ]
2752
+ // },
2753
+ // {
2754
+ // "label": "工作内容",
2755
+ // "type": "input",
2756
+ // "bootstraped": "col-sm-3",
2757
+ // "field": "f_job_content",
2758
+ // "readonly": false,
2759
+ // "required": true
2760
+ // },
2761
+ // {
2762
+ // "label": "施工单位",
2763
+ // "type": "select",
2764
+ // "bootstraped": "col-sm-3",
2765
+ // "field": "f_construction_unit",
2766
+ // "required": false
2767
+ // }
2768
+ // ],
2769
+ // "buttons": [
2770
+ // {
2771
+ // "button_name": "保存"
2772
+ // },
2773
+ // {
2774
+ // "button_name": "提交"
2775
+ // }
2776
+ // ]
2777
+ // }
2778
+ // ]
2779
+ // }
2780
+
2781
+ console.log('前台存入缓存中的data=>' + JSON.stringify(data))
2782
+ Vue.workflow_vue = Vue.prototype.$workflow_vue = data
2783
+ }
2784
+
2785
+
2786
+ }
2787
+ </script>
2788
+
2789
+ <style>
2790
+ .app-row {
2791
+ background-color: white;
2792
+ padding: 10px 10px 0 10px;
2793
+ border-bottom: 1px solid rgba(235, 235, 235, 0.5);
2794
+ }
2795
+
2796
+ .search_input {
2797
+ border: 0;
2798
+ outline: none;
2799
+ }
2800
+
2801
+ .button_shrink_top {
2802
+ width: 30px;
2803
+ height: 30px;
2804
+ background-size: 30px 30px;
2805
+ background-image: url("../../../static/newStyle/stretch_top.png")
2806
+ }
2807
+
2808
+ .button_shrink_bottom {
2809
+ width: 30px;
2810
+ height: 30px;
2811
+ background-size: 30px 30px;
2812
+ background-image: url("../../../static/newStyle/stretch_bottom.png")
2813
+ }
2814
+
2815
+ .app-botton {
2816
+ position: fixed;
2817
+ background: #87b2dd;
2818
+ color: #FFF;
2819
+ padding: 8px;
2820
+ text-align: center;
2821
+ font-size: 1.2em;
2822
+ z-index: 10;
2823
+ opacity: 0.5;
2824
+ bottom: 50px;
2825
+ margin-top: -10px;
2826
+ height: 40px;
2827
+ }
2828
+
2829
+ .class-a {
2830
+ border: 1px solid red;
2831
+ }
2832
+
2833
+ .padd-div-shu {
2834
+ padding-bottom: 5px;
2835
+ }
2836
+ </style>