apply-clients 5.0.35-90 → 5.0.35-91

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