apply-clients 3.3.53 → 3.3.57

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,804 +1,804 @@
1
- <template>
2
- <div class="auto clearfix">
3
- <show-back-reason :selectdata="show_data"></show-back-reason>
4
- </div>
5
- <service-view v-ref:service_show :data="show_data" v-if="showview"></service-view>
6
- </template>
7
- <script>
8
- import Vue from 'vue'
9
- import {HttpResetClass} from 'vue-client'
10
- import {isEmpty} from "../../../Util";
11
- // Date格式化
12
- Date.prototype.Format = function (fmt) {
13
- var o = {
14
- 'M+': this.getMonth() + 1, // 月份
15
- 'd+': this.getDate(), // 日
16
- 'H+': this.getHours(), // 小时
17
- 'm+': this.getMinutes(), // 分
18
- 's+': this.getSeconds(), // 秒
19
- 'q+': Math.floor((this.getMonth() + 3) / 3), // 季度
20
- 'S': this.getMilliseconds() // 毫秒
21
- }
22
- if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length))
23
- for (var k in o) {
24
- if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
25
- }
26
- return fmt
27
- }
28
- export default {
29
- title: '报建监控控制层',
30
- props: {
31
- selectdata: {
32
- type: Object
33
- },
34
- nodeSnapshot: {
35
- type: Boolean,
36
- default: false
37
- }
38
- },
39
- data() {
40
- return {
41
- data: null, // 展示的数据
42
- json_datas: null, // json配置数据结构
43
- showview: false, // 控制显示层显示
44
- show_data: null,
45
- config: {}
46
- }
47
- },
48
- created () {
49
- this.refurbish()
50
- },
51
- methods: {
52
- // 初始化模块
53
- async refurbish() {
54
- this.json_datas = this.$workflow_vue
55
- let sum = 0
56
- let jsonData = {}
57
- if (!this.json_datas || !this.json_datas.activitys || this.json_datas.activitys.length === 0) {
58
- this.$showMessage("网络故障,请刷新页面")
59
- return
60
- }
61
- this.json_datas.activitys.forEach(item => {
62
- if (this.selectdata.defname === item.title) {
63
- jsonData = item // 拿到当前节点的json配置信息
64
- sum++ // 节点名一样的个数
65
- }
66
- return this.selectdata.defname === item.title // 拿到当前节点的json配置信息
67
- })
68
-
69
- if (sum === 0) {
70
- this.$showMessage(`没有在JSON配置文件中找到活动名为:(${this.selectdata.defname})的节点配置`)
71
- return
72
- }
73
- if (sum > 1) {
74
- this.$showMessage(`在JSON配置文件中找到活动名为:(${this.selectdata.defname})的节点配置:${sum}个`)
75
- return
76
- }
77
-
78
- this.selectdata = Object.assign({}, this.selectdata, jsonData)
79
-
80
- // fields 字段填充值
81
- for (const item of this.selectdata.fields) {
82
- if (!item.value) {
83
- item.value = null
84
- }
85
-
86
- if (!item.value && (item.default || item.default === 0) && item.type !== 'datepicker') {
87
- if (item.eval) {
88
- item.value = eval(item.default)
89
- } else {
90
- item.value = item.default
91
- }
92
- }
93
-
94
- if (this.selectdata[item.field]) {
95
- // 将json字符串格式化赋值给value
96
- if (String(this.selectdata[item.field]).startsWith("{")) {
97
- item.value = JSON.parse(this.selectdata[item.field])
98
- } else {
99
- item.value = this.selectdata[item.field]
100
- }
101
- }
102
- if (this.selectdata[item.field] === 0) {
103
- item.value = 0
104
- }
105
-
106
- // datepicker
107
- if (item.type === 'datepicker' && !item.value && item.default) {
108
- item.value = new Date().Format(`${item.format ? item.format : 'yyyy-MM-dd HH:mm:ss'}`)
109
- }
110
-
111
- // 如果配置类型为select,优先从参数列表获取options
112
- if (item.type === 'select' || item.type === 'checkbox') {
113
- if (item.param) {
114
- let temp = this.$appdata.getParam(item.label)
115
-
116
- if (temp && temp.length > 0) {
117
- item.options = temp
118
- }
119
-
120
- if (item.paramLabel) {
121
- temp = this.$appdata.getParam(item.paramLabel)
122
- if (temp && temp.length > 0) {
123
- item.options = temp
124
- }
125
- }
126
- }
127
-
128
- if (item.ready) {
129
- item.options = await this[item.ready]()
130
- }
131
- }
132
-
133
-
134
- if (item.type === 'checkbox') {
135
- if (this.selectdata[item.field]) {
136
- item.value = JSON.parse(this.selectdata[item.field])
137
- } else {
138
- item.value = []
139
- }
140
- }
141
-
142
- this.selectdata[item.field] = item.value
143
-
144
- item.readonly = true
145
- item.disabled = true
146
- }
147
-
148
- // 控制组件
149
- if (this.selectdata.components) {
150
- this.selectdata.components.forEach(item => {
151
- item.mark = 1
152
- if (item.supervisory && this[item.supervisory]()) {
153
- item.mark = 0
154
- }
155
- })
156
- }
157
-
158
- // 初始化onetomany
159
- if (this.selectdata.onetomany) {
160
- for (const item of this.selectdata.onetomany) {
161
- let res = null
162
- if (item.queryEvent) {
163
- res = this[item.queryEvent]()
164
- } else {
165
- let data = {
166
- tablename: item.tables[0],
167
- condition: `f_process_id='${this.selectdata.f_process_id}'`
168
- }
169
- res = await this.$resetpost(
170
- 'rs/sql/singleTable',
171
- {data: data},
172
- {resolveMsg: null, rejectMsg: 'onetomany查询失败'}
173
- )
174
- }
175
-
176
- item.rows = res.data
177
-
178
- // 初始化onetomany中的fields
179
- for (const field of item.fields) {
180
- if (!field.value) {
181
- if (field.value !== 0) {
182
- field.value = null
183
- }
184
- }
185
-
186
- if (field.default || field.default === 0) {
187
- field.value = field.default
188
- }
189
-
190
- // datepicker
191
- if (field.type === 'datepicker' && !field.value && field.default) {
192
- field.value = new Date().Format(`${field.format ? field.format : 'yyyy-MM-dd HH:mm:ss'}`)
193
- }
194
-
195
- if (field.type === 'select') {
196
-
197
- let temp = this.$appdata.getParam(field.label)
198
-
199
- if (temp && temp.length > 0) {
200
- field.options = temp
201
- }
202
-
203
- if (field.paramLabel) {
204
- temp = this.$appdata.getParam(field.paramLabel)
205
- if (temp && temp.length > 0) {
206
- item.options = temp
207
- }
208
- }
209
-
210
- }
211
- }
212
-
213
- // 隐藏所有操作
214
- item.hiddenOperate = true
215
- if (item.supervisory && this[item.supervisory]()) {
216
- item.hiddenOperate = false
217
- }
218
- }
219
- }
220
-
221
- // 去除button
222
- this.selectdata.buttons = null
223
-
224
- // 完成时间和完成人,部门,分公司
225
- if (this.selectdata.state === '结束') {
226
- let http = new HttpResetClass()
227
- let res = await http.load('POST', 'rs/search', {
228
- source: 'this.getInfo()',
229
- userid: this.selectdata.userid
230
- }, {resolveMsg: null, rejectMsg: '处理人员获取失败!!!'})
231
- let user = res.data
232
- this.selectdata.operate_date = new Date(this.selectdata.finishtime).Format('yyyy-MM-dd')
233
- this.selectdata.operator = this.selectdata.person
234
- this.selectdata.orgs = user.orgs
235
- this.selectdata.parentname = user.deps
236
- }
237
-
238
- // 未结束且是下发查看指定人员
239
- if (this.selectdata.state !== '结束' && this.selectdata.actorexpression !== null && this.selectdata.actorexpression.indexOf('PI') === 0) {
240
- let http = new HttpResetClass()
241
- let res = await http.load('POST', 'rs/search', {
242
- source: 'this',
243
- userid: this.selectdata.actorexpression.substring(3, this.selectdata.actorexpression.length-1)
244
- }, {resolveMsg: null, rejectMsg: '处理人员获取失败!!!'})
245
- let user = res.data
246
- this.selectdata.operate_date = new Date().Format('yyyy-MM-dd')
247
- this.selectdata.operator = user.name
248
- this.selectdata.orgs = user.orgs
249
- this.selectdata.parentname = user.f_department_name
250
- }
251
-
252
- // 消除双向绑定,避免子组件(显示层)数据更改,父组件(控制层)也更改
253
- let temp = JSON.parse(JSON.stringify(this.selectdata))
254
-
255
- this.show_data = temp
256
- this.$nextTick(() => {
257
- this.showview = true
258
- })
259
- },
260
- // 金额转大写
261
- smalltoBIG(n) {
262
- let fraction = ['角', '分'];
263
- let digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'];
264
- let unit = [['元', '万', '亿'], ['', '拾', '佰', '仟']];
265
- let head = n < 0 ? '欠' : '';
266
- n = Math.abs(n);
267
-
268
- let s = '';
269
-
270
- for (var i = 0; i < fraction.length; i++) {
271
- s += (digit[Math.floor(n * 10 * Math.pow(10, i)) % 10] + fraction[i]).replace(/零./, '');
272
- }
273
- s = s || '整';
274
- n = Math.floor(n);
275
-
276
- for (var i = 0; i < unit[0].length && n > 0; i++) {
277
- let p = '';
278
- for (var j = 0; j < unit[1].length && n > 0; j++) {
279
- p = digit[n % 10] + unit[1][j] + p;
280
- n = Math.floor(n / 10);
281
- }
282
- s = p.replace(/(零.)*零$/, '').replace(/^$/, '零') + unit[0][i] + s;
283
- }
284
- return head + s.replace(/(零.)*零元/, '元').replace(/(零.)+/g, '零').replace(/^整$/, '零元整')
285
- },
286
- getLableValue(label) {
287
- for (const item of this.show_data.fields) {
288
- if (item.label === label && item.type !== 'number') {
289
- return item.value || ''
290
- }
291
- if (item.label === label && item.type === 'number') {
292
- return item.value || 0
293
- }
294
- }
295
- },
296
- getLableOptions(label) {
297
- for (const item of this.show_data.fields) {
298
- if (item.label === label) {
299
- return item.options
300
- }
301
- }
302
- },
303
- setLabelValue(label, value) {
304
- for (const item of this.show_data.fields) {
305
- if (item.label === label) {
306
- item.value = value
307
- this.show_data[item.field] = value
308
- }
309
- }
310
- },
311
- setLabelOptions(label, options) {
312
- for (const item of this.show_data.fields) {
313
- if (item.label === label) {
314
- item.options = options
315
- }
316
- }
317
- },
318
- showLabels(...labels) {
319
- for (const item of this.show_data.fields) {
320
- if (labels.includes(item.label)) {
321
- item.hidden = false
322
- }
323
- }
324
- },
325
- hideLabels(...labels) {
326
- for (const item of this.show_data.fields) {
327
- if (labels.includes(item.label)) {
328
- item.hidden = true
329
- }
330
- }
331
- },
332
- requiredLabels(...labels) {
333
- for (const item of this.show_data.fields) {
334
- if (labels.includes(item.label)) {
335
- item.required = true
336
- }
337
- }
338
- },
339
- electiveLabels(...labels) {
340
- for (const item of this.show_data.fields) {
341
- if (labels.includes(item.label)) {
342
- item.required = false
343
- }
344
- }
345
- },
346
- readonlyLabels(...labels) {
347
- for (const item of this.show_data.fields) {
348
- if (labels.includes(item.label)) {
349
- item.readonly = true
350
- item.disabled = true
351
- }
352
- }
353
- },
354
- readwriteLabels(...labels) {
355
- for (const item of this.show_data.fields) {
356
- if (labels.includes(item.label)) {
357
- item.readonly = false
358
- item.disabled = false
359
- }
360
- }
361
- },
362
- async checkDuplicate(index) {
363
- let http = new HttpResetClass()
364
- let data = {
365
- tablename: 't_apply',
366
- condition: `${this.show_data.fields[index].field} = '${this.show_data.fields[index].value}'`
367
- }
368
- let res = await http.load('POST', 'rs/sql/singleTable', {data: data}, {
369
- resolveMsg: null,
370
- rejectMsg: `${this.show_data.fields[index].label}查询失败`
371
- })
372
- if (res.data.length > 0) {
373
- this.show_data.fields[index].value = null
374
- this.$showAlert(`${this.show_data.fields[index].label}已存在!!!`, 'warning', 3000)
375
- }
376
- },
377
- // 获取片区
378
- async getSliceArea () {
379
- let data = {
380
- source: 'this.getParentByType($organization$).getAllChildrens().where(row.getType() == $zone$)',
381
- userid: this.$login.f.id
382
- }
383
-
384
- let res = await this.$resetpost(
385
- `rs/search`,
386
- {data: data},
387
- {resolveMsg: null, rejectMsg: '片区查询失败!!!'}
388
- )
389
-
390
- return res.data.map(item => {
391
- return {
392
- label: item.name,
393
- value: item.name
394
- }
395
- })
396
- },
397
- // 获取区县
398
- async getPcd () {
399
- let data = {
400
- tablename: 't_pcd',
401
- condition: `f_filialeid = '${this.$login.f.orgid}'`
402
- }
403
- let res = await this.$resetpost(
404
- `rs/sql/singleTable`,
405
- {data: data},
406
- {resolveMsg: null, rejectMsg: '区县查询失败!!!'}
407
- )
408
-
409
- return res.data.map(item => {
410
- return {
411
- label: item.f_pcd,
412
- value: item.f_pcd
413
- }
414
- })
415
- },
416
- // 缴费前置
417
- chargeBefore () {
418
- if (Number(this.show_data.f_due_money) > Number(this.show_data.f_cumulative_payment_money) || Number(this.show_data.f_surplus_money) > 0) {
419
- this.$showAlert('费用未结清!!!', 'warning', 3000)
420
- throw null
421
- }
422
- },
423
- // 施工前置
424
- async constructionBefore () {
425
- let http = new HttpResetClass()
426
- let data = {
427
- condition: `ui.f_process_id = '${this.show_data.f_process_id}' and uf.f_table_state = '待开通'`
428
- }
429
- let res = await http.load(
430
- 'POST',
431
- 'rs/sql/countApplyUserinfo',
432
- {data: data},
433
- {
434
- resolveMsg: null,
435
- rejectMsg: '安装明细查询失败!!!'
436
- })
437
- if (res.data[0].num > 0) {
438
- this.$showAlert(`还有${res.data[0].num}户未安装,无法提交`, 'warning', 3000)
439
- throw `还有${res.data[0].num}户未安装,无法提交`
440
- }
441
- },
442
- changePipeBuild () {
443
- if (this.selectdata.f_process_dep === '工程部') {
444
- return 'this.getParentByType($organization$).getChildByName($工程部报装$).getChildren()'
445
- }
446
- if (this.selectdata.f_process_dep === '运营部') {
447
- return 'this.getParentByType($organization$).getChildByName($运营部报装$).getChildren()'
448
- }
449
- },
450
- async getDevInfo () {
451
- let data = {
452
- tablename: 't_dev_info',
453
- condition: `f_orgid = '${this.$login.f.orgid}'`
454
- }
455
- let res = await this.$resetpost(
456
- `rs/sql/singleTable`,
457
- {data: data},
458
- {resolveMsg: null, rejectMsg: '公司查询失败!!!'}
459
- )
460
-
461
- return res.data.map(item => {
462
- return {
463
- label: item.f_dev_name,
464
- value: item.f_dev_name
465
- }
466
- })
467
- },
468
- async getPrice (f_price_id) {
469
- console.log('=======================')
470
- console.log(f_price_id)
471
-
472
- let data = {
473
- condition: `sp.f_orgid = '${this.$login.f.orgid}'`
474
- }
475
-
476
- if (!isEmpty(f_price_id)) {
477
- data.condition = `sp.f_orgid = '${this.$login.f.orgid}' and sp.f_price_id = ${f_price_id}`
478
- }
479
- let http = new HttpResetClass()
480
- let res = await http.load(
481
- 'POST',
482
- `rs/sql/applyGetPrice`,
483
- {data: data},
484
- {resolveMsg: null, rejectMsg: '气价查询失败!!!'}
485
- )
486
-
487
- return res.data.map(item => {
488
- return {
489
- label: item.f_price_name,
490
- value: item
491
- }
492
- })
493
- },
494
- materialSupervisory () {
495
- if (this.selectdata.userid === this.$login.f.id) {
496
- return true
497
- }
498
- return false
499
- }
500
- },
501
- events:{
502
- // 选择材料
503
- async materialNameChenge (index, fieldIndex) {
504
- let material = this.show_data.onetomany[index].fields[fieldIndex].value
505
-
506
- this.show_data.onetomany[index].fields.forEach(item => {
507
- if (material[item.field]) {
508
- item.value = material[item.field]
509
- }
510
- })
511
- },
512
- // 打开模态框获取材料
513
- async 'getMaterialName' (index) {
514
- let data = {
515
- condition: `1=1`
516
- }
517
- let http = new HttpResetClass()
518
- let res = await http.load(
519
- 'POST',
520
- `rs/sql/getApplyMaterial`,
521
- {data: data},
522
- {resolveMsg: null, rejectMsg: '材料查询失败!!!'}
523
- )
524
-
525
- this.show_data.onetomany[index].fields.forEach(field => {
526
- if (field.label === '选择材料') {
527
- field.options = res.data.map(item => {
528
- return {
529
- 'label': `${item.f_material_name}--${item.f_material_style}--${item.f_material_unit}`,
530
- 'value': item
531
- }
532
- })
533
- }
534
- })
535
- },
536
- // 终止报建初始化·
537
- async 'stopApplyReadyEvent' () {
538
-
539
- let f_is_stop = this.getLableValue('是否终止')
540
-
541
- for (const item of this.show_data.fields) {
542
- if (f_is_stop === '是') {
543
- if (item.label === '终止原因') {
544
- item.hidden = false
545
- item.required = true
546
- }
547
- } else {
548
- if (item.label === '终止原因') {
549
- item.hidden = true
550
- item.required = false
551
- }
552
- }
553
- }
554
-
555
- if (isEmpty(this.show_data.f_parent_process_id)) {
556
- return
557
- }
558
- let data = {
559
- condition: `f_process_id = '${this.show_data.f_parent_process_id}'`,
560
- data: {
561
- id: this.$login.f.id,
562
- orgid: this.$login.f.orgid
563
- }
564
- }
565
- let res = await this.$resetpost(
566
- `rs/sql/supervisory`,
567
- {data: data},
568
- {resolveMsg: null, rejectMsg: '项目查询失败!!!'}
569
- )
570
- this.show_data.parentApply = res.data[0]
571
- },
572
- // 通气点火初始化
573
- async 'gasReadyEvent' () {
574
- if (!isEmpty(this.show_data.f_price_id)) {
575
- let priceList = await this.getPrice(this.show_data.f_price_id)
576
- this.setLabelValue('气价名称', priceList[0].value)
577
- }
578
-
579
-
580
- // 保险初始化显示内容
581
- let f_is_insure = this.getLableValue('是否购买保险')
582
- for (const item of this.show_data.fields) {
583
- if (f_is_insure === '是') {
584
- if (item.label === '保费开始日期' || item.label === '保费结束日期' || item.label === '险种' || item.label === '保费金额') {
585
- item.hidden = false
586
- item.required = true
587
- }
588
- if (item.label === '保险备注') {
589
- item.hidden = false
590
- }
591
- } else {
592
- if (item.label === '保费开始日期' || item.label === '保费结束日期' || item.label === '险种' || item.label === '保费金额') {
593
- item.hidden = true
594
- item.required = false
595
- }
596
- if (item.label === '保险备注') {
597
- item.hidden = true
598
- }
599
- }
600
- }
601
- },
602
- // 申请节点初始化
603
- 'applyReadyEvent' () {
604
- this.$getConfig(this, 'UserAddress')
605
-
606
- let f_address_type = this.show_data.f_address_type
607
-
608
- for (const item of this.show_data.fields) {
609
- if (f_address_type === '民用市区') {
610
- if (item.label === '区/县' || item.label === '街道/乡镇' || item.label === '集收单位' || item.label === '门牌号') {
611
- item.hidden = false
612
- item.required = true
613
- }
614
- if (item.label === '楼号/组' || item.label === '单元/排' || item.label === '楼层') {
615
- item.hidden = false
616
- item.required = false
617
- }
618
- if (item.label === '地址') {
619
- item.readonly = true
620
- }
621
- }
622
- if (f_address_type === '民用乡镇') {
623
- if (item.label === '区/县' || item.label === '街道/乡镇' || item.label === '集收单位' || item.label === '门牌号') {
624
- item.hidden = false
625
- item.required = true
626
- }
627
- if (item.label === '楼号/组' || item.label === '单元/排' || item.label === '楼层') {
628
- item.hidden = false
629
- item.required = false
630
- }
631
- if (item.label === '楼层') {
632
- item.hidden = true
633
- item.required = false
634
- }
635
- if (item.label === '地址') {
636
- item.readonly = true
637
- }
638
- }
639
- if (f_address_type === '特殊地址') {
640
- if (item.label === '区/县' || item.label === '街道/乡镇') {
641
- item.hidden = false
642
- item.required = true
643
- }
644
- if (item.label === '集收单位') {
645
- item.hidden = false
646
- item.required = false
647
- }
648
- if (item.label === '楼号/组' || item.label === '单元/排' || item.label === '楼层' || item.label === '门牌号') {
649
- item.hidden = true
650
- item.required = false
651
- }
652
- if (item.label === '地址') {
653
- item.readonly = false
654
- }
655
- }
656
-
657
- if (this.show_data.f_apply_source === '线下发起' && item.label === '预约地址') {
658
- item.hidden = true
659
- }
660
- }
661
- },
662
- // 失去焦点出触发事件
663
- 'onchange' (index) {
664
- if (this.show_data.defname === '报装申请' || this.show_data.defname === '信息确认') {
665
- if (
666
- this.show_data.fields[index].label === '区/县' ||
667
- this.show_data.fields[index].label === '街道/乡镇' ||
668
- this.show_data.fields[index].label === '集收单位' ||
669
- this.show_data.fields[index].label === '楼号/组' ||
670
- this.show_data.fields[index].label === '单元/排' ||
671
- this.show_data.fields[index].label === '楼层' ||
672
- this.show_data.fields[index].label === '门牌号'
673
- ) {
674
-
675
- let f_pcd = this.getLableValue('区/县') || ''
676
- let f_street = this.getLableValue('街道/乡镇') || ''
677
- let f_residential_area = this.getLableValue('集收单位') || ''
678
- let f_building = this.getLableValue('楼号/组') || ''
679
- let f_building_suffix = f_building ? this.config.f_building_suffix : ''
680
- let f_unit = this.getLableValue('单元/排') || ''
681
- let f_unit_suffix = f_unit ? this.config.f_unit_suffix : ''
682
- let f_floor = this.getLableValue('楼层') || ''
683
- let f_floor_suffix = f_floor ? this.config.f_floor_suffix : ''
684
- let f_room = this.getLableValue('门牌号') || ''
685
- let f_room_suffix = f_room ? this.config.f_room_suffix : ''
686
-
687
- let f_address = f_pcd + f_street + f_residential_area + f_building + f_building_suffix + f_unit + f_unit_suffix + f_floor + f_floor_suffix + f_room + f_room_suffix
688
- this.setLabelValue("地址", f_address)
689
- }
690
- }
691
- },
692
- // =============================
693
- selectSearch (val, index) {},
694
- 'onblur' (index) {},
695
- 'oninput' (index) {},
696
- 'initializtionView' () {},
697
- async 'onchangeModal' (index, fieldIndex) {
698
- },
699
- async 'onblurModal' (index, fieldIndex) {
700
-
701
- },
702
- async 'oninputModal' (index, fieldIndex) {
703
-
704
- },
705
- async 'onetomanydelete' (index, rowIndex) {
706
-
707
- let http = new HttpResetClass()
708
-
709
- let res = await http.load(
710
- 'DELETE',
711
- `rs/entity/${this.show_data.onetomany[index].tables[0]}/${this.show_data.onetomany[index].rows[rowIndex].id}`,
712
- null,
713
- {resolveMsg: null, rejectMsg: '删除失败!!!'}
714
- )
715
-
716
- res = await this.$resetpost(
717
- 'rs/entity/t_apply',
718
- this.show_data
719
- )
720
-
721
- this.$dispatch('breakControl', this.show_data)
722
- },
723
- async 'onetomanyupdate' (index, rowIndex) {
724
- let data = this.show_data.onetomany[index].rows[rowIndex]
725
-
726
- this.show_data.onetomany[index].fields.forEach(item => {
727
- data[item.field] = item.value
728
- })
729
- let res = await this.$resetpost(
730
- `rs/entity/${this.show_data.onetomany[index].tables[0]}`,
731
- data
732
- )
733
-
734
- res = await this.$resetpost(
735
- 'rs/entity/t_apply',
736
- this.show_data
737
- )
738
-
739
- this.$dispatch('breakControl', this.show_data)
740
- },
741
- async 'onetomanyadd' (index) {
742
- let data = {
743
- f_process_id : this.show_data.f_process_id,
744
- f_operator_id: this.$login.f.id,
745
- f_operator: this.$login.f.name,
746
- f_operation_date: new Date().Format('yyyy-MM-dd HH:mm:ss'),
747
- f_orgid: this.$login.f.orgid,
748
- f_orgname: this.$login.f.orgs
749
- }
750
- this.show_data.onetomany[index].fields.forEach(item => {
751
- data[item.field] = item.value
752
- })
753
- let res = await this.$resetpost(
754
- `rs/entity/${this.show_data.onetomany[index].tables[0]}`,
755
- data
756
- )
757
-
758
- res = await this.$resetpost(
759
- 'rs/entity/t_apply',
760
- this.show_data
761
- )
762
-
763
- this.$dispatch('breakControl', this.show_data)
764
- },
765
- async 'importEvent' (index, table, configName, filepath) {
766
- let data = {
767
- selectdata: this.show_data,
768
- table: table,
769
- filepath: filepath,
770
- configName: configName,
771
- user: this.$login.f
772
- }
773
-
774
- let res = await this.$resetpost(
775
- `rs/logic/importEvent`,
776
- data
777
- )
778
-
779
- this.$dispatch('breakControl', this.show_data)
780
- },
781
- 'onbutchange' (index) {
782
-
783
- },
784
- 'onbutblur' (index) {
785
-
786
- },
787
- 'onbutinput' (index) {
788
-
789
- }
790
- },
791
- watch: {
792
- deep: true
793
- }
794
- }
795
- </script>
796
- <style scoped>
797
- /*清除model中的浮动*/
798
- .clearfix:after,.clearfix:before{
799
- display: table;
800
- }
801
- .clearfix:after{
802
- clear: both;
803
- }
804
- </style>
1
+ <template>
2
+ <div class="auto clearfix">
3
+ <show-back-reason :selectdata="show_data"></show-back-reason>
4
+ </div>
5
+ <service-view v-ref:service_show :data="show_data" v-if="showview"></service-view>
6
+ </template>
7
+ <script>
8
+ import Vue from 'vue'
9
+ import {HttpResetClass} from 'vue-client'
10
+ import {isEmpty} from "../../../Util";
11
+ // Date格式化
12
+ Date.prototype.Format = function (fmt) {
13
+ var o = {
14
+ 'M+': this.getMonth() + 1, // 月份
15
+ 'd+': this.getDate(), // 日
16
+ 'H+': this.getHours(), // 小时
17
+ 'm+': this.getMinutes(), // 分
18
+ 's+': this.getSeconds(), // 秒
19
+ 'q+': Math.floor((this.getMonth() + 3) / 3), // 季度
20
+ 'S': this.getMilliseconds() // 毫秒
21
+ }
22
+ if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length))
23
+ for (var k in o) {
24
+ if (new RegExp('(' + k + ')').test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
25
+ }
26
+ return fmt
27
+ }
28
+ export default {
29
+ title: '报建监控控制层',
30
+ props: {
31
+ selectdata: {
32
+ type: Object
33
+ },
34
+ nodeSnapshot: {
35
+ type: Boolean,
36
+ default: false
37
+ }
38
+ },
39
+ data() {
40
+ return {
41
+ data: null, // 展示的数据
42
+ json_datas: null, // json配置数据结构
43
+ showview: false, // 控制显示层显示
44
+ show_data: null,
45
+ config: {}
46
+ }
47
+ },
48
+ created () {
49
+ this.refurbish()
50
+ },
51
+ methods: {
52
+ // 初始化模块
53
+ async refurbish() {
54
+ this.json_datas = this.$workflow_vue
55
+ let sum = 0
56
+ let jsonData = {}
57
+ if (!this.json_datas || !this.json_datas.activitys || this.json_datas.activitys.length === 0) {
58
+ this.$showMessage("网络故障,请刷新页面")
59
+ return
60
+ }
61
+ this.json_datas.activitys.forEach(item => {
62
+ if (this.selectdata.defname === item.title) {
63
+ jsonData = item // 拿到当前节点的json配置信息
64
+ sum++ // 节点名一样的个数
65
+ }
66
+ return this.selectdata.defname === item.title // 拿到当前节点的json配置信息
67
+ })
68
+
69
+ if (sum === 0) {
70
+ this.$showMessage(`没有在JSON配置文件中找到活动名为:(${this.selectdata.defname})的节点配置`)
71
+ return
72
+ }
73
+ if (sum > 1) {
74
+ this.$showMessage(`在JSON配置文件中找到活动名为:(${this.selectdata.defname})的节点配置:${sum}个`)
75
+ return
76
+ }
77
+
78
+ this.selectdata = Object.assign({}, this.selectdata, jsonData)
79
+
80
+ // fields 字段填充值
81
+ for (const item of this.selectdata.fields) {
82
+ if (!item.value) {
83
+ item.value = null
84
+ }
85
+
86
+ if (!item.value && (item.default || item.default === 0) && item.type !== 'datepicker') {
87
+ if (item.eval) {
88
+ item.value = eval(item.default)
89
+ } else {
90
+ item.value = item.default
91
+ }
92
+ }
93
+
94
+ if (this.selectdata[item.field]) {
95
+ // 将json字符串格式化赋值给value
96
+ if (String(this.selectdata[item.field]).startsWith("{")) {
97
+ item.value = JSON.parse(this.selectdata[item.field])
98
+ } else {
99
+ item.value = this.selectdata[item.field]
100
+ }
101
+ }
102
+ if (this.selectdata[item.field] === 0) {
103
+ item.value = 0
104
+ }
105
+
106
+ // datepicker
107
+ if (item.type === 'datepicker' && !item.value && item.default) {
108
+ item.value = new Date().Format(`${item.format ? item.format : 'yyyy-MM-dd HH:mm:ss'}`)
109
+ }
110
+
111
+ // 如果配置类型为select,优先从参数列表获取options
112
+ if (item.type === 'select' || item.type === 'checkbox') {
113
+ if (item.param) {
114
+ let temp = this.$appdata.getParam(item.label)
115
+
116
+ if (temp && temp.length > 0) {
117
+ item.options = temp
118
+ }
119
+
120
+ if (item.paramLabel) {
121
+ temp = this.$appdata.getParam(item.paramLabel)
122
+ if (temp && temp.length > 0) {
123
+ item.options = temp
124
+ }
125
+ }
126
+ }
127
+
128
+ if (item.ready) {
129
+ item.options = await this[item.ready]()
130
+ }
131
+ }
132
+
133
+
134
+ if (item.type === 'checkbox') {
135
+ if (this.selectdata[item.field]) {
136
+ item.value = JSON.parse(this.selectdata[item.field])
137
+ } else {
138
+ item.value = []
139
+ }
140
+ }
141
+
142
+ this.selectdata[item.field] = item.value
143
+
144
+ item.readonly = true
145
+ item.disabled = true
146
+ }
147
+
148
+ // 控制组件
149
+ if (this.selectdata.components) {
150
+ this.selectdata.components.forEach(item => {
151
+ item.mark = 1
152
+ if (item.supervisory && this[item.supervisory]()) {
153
+ item.mark = 0
154
+ }
155
+ })
156
+ }
157
+
158
+ // 初始化onetomany
159
+ if (this.selectdata.onetomany) {
160
+ for (const item of this.selectdata.onetomany) {
161
+ let res = null
162
+ if (item.queryEvent) {
163
+ res = this[item.queryEvent]()
164
+ } else {
165
+ let data = {
166
+ tablename: item.tables[0],
167
+ condition: `f_process_id='${this.selectdata.f_process_id}'`
168
+ }
169
+ res = await this.$resetpost(
170
+ 'rs/sql/singleTable',
171
+ {data: data},
172
+ {resolveMsg: null, rejectMsg: 'onetomany查询失败'}
173
+ )
174
+ }
175
+
176
+ item.rows = res.data
177
+
178
+ // 初始化onetomany中的fields
179
+ for (const field of item.fields) {
180
+ if (!field.value) {
181
+ if (field.value !== 0) {
182
+ field.value = null
183
+ }
184
+ }
185
+
186
+ if (field.default || field.default === 0) {
187
+ field.value = field.default
188
+ }
189
+
190
+ // datepicker
191
+ if (field.type === 'datepicker' && !field.value && field.default) {
192
+ field.value = new Date().Format(`${field.format ? field.format : 'yyyy-MM-dd HH:mm:ss'}`)
193
+ }
194
+
195
+ if (field.type === 'select') {
196
+
197
+ let temp = this.$appdata.getParam(field.label)
198
+
199
+ if (temp && temp.length > 0) {
200
+ field.options = temp
201
+ }
202
+
203
+ if (field.paramLabel) {
204
+ temp = this.$appdata.getParam(field.paramLabel)
205
+ if (temp && temp.length > 0) {
206
+ item.options = temp
207
+ }
208
+ }
209
+
210
+ }
211
+ }
212
+
213
+ // 隐藏所有操作
214
+ item.hiddenOperate = true
215
+ if (item.supervisory && this[item.supervisory]()) {
216
+ item.hiddenOperate = false
217
+ }
218
+ }
219
+ }
220
+
221
+ // 去除button
222
+ this.selectdata.buttons = null
223
+
224
+ // 完成时间和完成人,部门,分公司
225
+ if (this.selectdata.state === '结束') {
226
+ let http = new HttpResetClass()
227
+ let res = await http.load('POST', 'rs/search', {
228
+ source: 'this.getInfo()',
229
+ userid: this.selectdata.userid
230
+ }, {resolveMsg: null, rejectMsg: '处理人员获取失败!!!'})
231
+ let user = res.data
232
+ this.selectdata.operate_date = new Date(this.selectdata.finishtime).Format('yyyy-MM-dd')
233
+ this.selectdata.operator = this.selectdata.person
234
+ this.selectdata.orgs = user.orgs
235
+ this.selectdata.parentname = user.deps
236
+ }
237
+
238
+ // 未结束且是下发查看指定人员
239
+ if (this.selectdata.state !== '结束' && this.selectdata.actorexpression !== null && this.selectdata.actorexpression.indexOf('PI') === 0) {
240
+ let http = new HttpResetClass()
241
+ let res = await http.load('POST', 'rs/search', {
242
+ source: 'this',
243
+ userid: this.selectdata.actorexpression.substring(3, this.selectdata.actorexpression.length-1)
244
+ }, {resolveMsg: null, rejectMsg: '处理人员获取失败!!!'})
245
+ let user = res.data
246
+ this.selectdata.operate_date = new Date().Format('yyyy-MM-dd')
247
+ this.selectdata.operator = user.name
248
+ this.selectdata.orgs = user.orgs
249
+ this.selectdata.parentname = user.f_department_name
250
+ }
251
+
252
+ // 消除双向绑定,避免子组件(显示层)数据更改,父组件(控制层)也更改
253
+ let temp = JSON.parse(JSON.stringify(this.selectdata))
254
+
255
+ this.show_data = temp
256
+ this.$nextTick(() => {
257
+ this.showview = true
258
+ })
259
+ },
260
+ // 金额转大写
261
+ smalltoBIG(n) {
262
+ let fraction = ['角', '分'];
263
+ let digit = ['零', '壹', '贰', '叁', '肆', '伍', '陆', '柒', '捌', '玖'];
264
+ let unit = [['元', '万', '亿'], ['', '拾', '佰', '仟']];
265
+ let head = n < 0 ? '欠' : '';
266
+ n = Math.abs(n);
267
+
268
+ let s = '';
269
+
270
+ for (var i = 0; i < fraction.length; i++) {
271
+ s += (digit[Math.floor(n * 10 * Math.pow(10, i)) % 10] + fraction[i]).replace(/零./, '');
272
+ }
273
+ s = s || '整';
274
+ n = Math.floor(n);
275
+
276
+ for (var i = 0; i < unit[0].length && n > 0; i++) {
277
+ let p = '';
278
+ for (var j = 0; j < unit[1].length && n > 0; j++) {
279
+ p = digit[n % 10] + unit[1][j] + p;
280
+ n = Math.floor(n / 10);
281
+ }
282
+ s = p.replace(/(零.)*零$/, '').replace(/^$/, '零') + unit[0][i] + s;
283
+ }
284
+ return head + s.replace(/(零.)*零元/, '元').replace(/(零.)+/g, '零').replace(/^整$/, '零元整')
285
+ },
286
+ getLableValue(label) {
287
+ for (const item of this.show_data.fields) {
288
+ if (item.label === label && item.type !== 'number') {
289
+ return item.value || ''
290
+ }
291
+ if (item.label === label && item.type === 'number') {
292
+ return item.value || 0
293
+ }
294
+ }
295
+ },
296
+ getLableOptions(label) {
297
+ for (const item of this.show_data.fields) {
298
+ if (item.label === label) {
299
+ return item.options
300
+ }
301
+ }
302
+ },
303
+ setLabelValue(label, value) {
304
+ for (const item of this.show_data.fields) {
305
+ if (item.label === label) {
306
+ item.value = value
307
+ this.show_data[item.field] = value
308
+ }
309
+ }
310
+ },
311
+ setLabelOptions(label, options) {
312
+ for (const item of this.show_data.fields) {
313
+ if (item.label === label) {
314
+ item.options = options
315
+ }
316
+ }
317
+ },
318
+ showLabels(...labels) {
319
+ for (const item of this.show_data.fields) {
320
+ if (labels.includes(item.label)) {
321
+ item.hidden = false
322
+ }
323
+ }
324
+ },
325
+ hideLabels(...labels) {
326
+ for (const item of this.show_data.fields) {
327
+ if (labels.includes(item.label)) {
328
+ item.hidden = true
329
+ }
330
+ }
331
+ },
332
+ requiredLabels(...labels) {
333
+ for (const item of this.show_data.fields) {
334
+ if (labels.includes(item.label)) {
335
+ item.required = true
336
+ }
337
+ }
338
+ },
339
+ electiveLabels(...labels) {
340
+ for (const item of this.show_data.fields) {
341
+ if (labels.includes(item.label)) {
342
+ item.required = false
343
+ }
344
+ }
345
+ },
346
+ readonlyLabels(...labels) {
347
+ for (const item of this.show_data.fields) {
348
+ if (labels.includes(item.label)) {
349
+ item.readonly = true
350
+ item.disabled = true
351
+ }
352
+ }
353
+ },
354
+ readwriteLabels(...labels) {
355
+ for (const item of this.show_data.fields) {
356
+ if (labels.includes(item.label)) {
357
+ item.readonly = false
358
+ item.disabled = false
359
+ }
360
+ }
361
+ },
362
+ async checkDuplicate(index) {
363
+ let http = new HttpResetClass()
364
+ let data = {
365
+ tablename: 't_apply',
366
+ condition: `${this.show_data.fields[index].field} = '${this.show_data.fields[index].value}'`
367
+ }
368
+ let res = await http.load('POST', 'rs/sql/singleTable', {data: data}, {
369
+ resolveMsg: null,
370
+ rejectMsg: `${this.show_data.fields[index].label}查询失败`
371
+ })
372
+ if (res.data.length > 0) {
373
+ this.show_data.fields[index].value = null
374
+ this.$showAlert(`${this.show_data.fields[index].label}已存在!!!`, 'warning', 3000)
375
+ }
376
+ },
377
+ // 获取片区
378
+ async getSliceArea () {
379
+ let data = {
380
+ source: 'this.getParentByType($organization$).getAllChildrens().where(row.getType() == $zone$)',
381
+ userid: this.$login.f.id
382
+ }
383
+
384
+ let res = await this.$resetpost(
385
+ `rs/search`,
386
+ {data: data},
387
+ {resolveMsg: null, rejectMsg: '片区查询失败!!!'}
388
+ )
389
+
390
+ return res.data.map(item => {
391
+ return {
392
+ label: item.name,
393
+ value: item.name
394
+ }
395
+ })
396
+ },
397
+ // 获取区县
398
+ async getPcd () {
399
+ let data = {
400
+ tablename: 't_pcd',
401
+ condition: `f_filialeid = '${this.$login.f.orgid}'`
402
+ }
403
+ let res = await this.$resetpost(
404
+ `rs/sql/singleTable`,
405
+ {data: data},
406
+ {resolveMsg: null, rejectMsg: '区县查询失败!!!'}
407
+ )
408
+
409
+ return res.data.map(item => {
410
+ return {
411
+ label: item.f_pcd,
412
+ value: item.f_pcd
413
+ }
414
+ })
415
+ },
416
+ // 缴费前置
417
+ chargeBefore () {
418
+ if (Number(this.show_data.f_due_money) > Number(this.show_data.f_cumulative_payment_money) || Number(this.show_data.f_surplus_money) > 0) {
419
+ this.$showAlert('费用未结清!!!', 'warning', 3000)
420
+ throw null
421
+ }
422
+ },
423
+ // 施工前置
424
+ async constructionBefore () {
425
+ let http = new HttpResetClass()
426
+ let data = {
427
+ condition: `ui.f_process_id = '${this.show_data.f_process_id}' and uf.f_table_state = '待开通'`
428
+ }
429
+ let res = await http.load(
430
+ 'POST',
431
+ 'rs/sql/countApplyUserinfo',
432
+ {data: data},
433
+ {
434
+ resolveMsg: null,
435
+ rejectMsg: '安装明细查询失败!!!'
436
+ })
437
+ if (res.data[0].num > 0) {
438
+ this.$showAlert(`还有${res.data[0].num}户未安装,无法提交`, 'warning', 3000)
439
+ throw `还有${res.data[0].num}户未安装,无法提交`
440
+ }
441
+ },
442
+ changePipeBuild () {
443
+ if (this.selectdata.f_process_dep === '工程部') {
444
+ return 'this.getParentByType($organization$).getChildByName($工程部报装$).getChildren()'
445
+ }
446
+ if (this.selectdata.f_process_dep === '运营部') {
447
+ return 'this.getParentByType($organization$).getChildByName($运营部报装$).getChildren()'
448
+ }
449
+ },
450
+ async getDevInfo () {
451
+ let data = {
452
+ tablename: 't_dev_info',
453
+ condition: `f_orgid = '${this.$login.f.orgid}'`
454
+ }
455
+ let res = await this.$resetpost(
456
+ `rs/sql/singleTable`,
457
+ {data: data},
458
+ {resolveMsg: null, rejectMsg: '公司查询失败!!!'}
459
+ )
460
+
461
+ return res.data.map(item => {
462
+ return {
463
+ label: item.f_dev_name,
464
+ value: item.f_dev_name
465
+ }
466
+ })
467
+ },
468
+ async getPrice (f_price_id) {
469
+ console.log('=======================')
470
+ console.log(f_price_id)
471
+
472
+ let data = {
473
+ condition: `sp.f_orgid = '${this.$login.f.orgid}'`
474
+ }
475
+
476
+ if (!isEmpty(f_price_id)) {
477
+ data.condition = `sp.f_orgid = '${this.$login.f.orgid}' and sp.f_price_id = ${f_price_id}`
478
+ }
479
+ let http = new HttpResetClass()
480
+ let res = await http.load(
481
+ 'POST',
482
+ `rs/sql/applyGetPrice`,
483
+ {data: data},
484
+ {resolveMsg: null, rejectMsg: '气价查询失败!!!'}
485
+ )
486
+
487
+ return res.data.map(item => {
488
+ return {
489
+ label: item.f_price_name,
490
+ value: item
491
+ }
492
+ })
493
+ },
494
+ materialSupervisory () {
495
+ if (this.selectdata.userid === this.$login.f.id) {
496
+ return true
497
+ }
498
+ return false
499
+ }
500
+ },
501
+ events:{
502
+ // 选择材料
503
+ async materialNameChenge (index, fieldIndex) {
504
+ let material = this.show_data.onetomany[index].fields[fieldIndex].value
505
+
506
+ this.show_data.onetomany[index].fields.forEach(item => {
507
+ if (material[item.field]) {
508
+ item.value = material[item.field]
509
+ }
510
+ })
511
+ },
512
+ // 打开模态框获取材料
513
+ async 'getMaterialName' (index) {
514
+ let data = {
515
+ condition: `1=1`
516
+ }
517
+ let http = new HttpResetClass()
518
+ let res = await http.load(
519
+ 'POST',
520
+ `rs/sql/getStockMaterial`,
521
+ {data: data},
522
+ {resolveMsg: null, rejectMsg: '材料查询失败!!!'}
523
+ )
524
+
525
+ this.show_data.onetomany[index].fields.forEach(field => {
526
+ if (field.label === '选择材料') {
527
+ field.options = res.data.map(item => {
528
+ return {
529
+ 'label': `${item.f_material_name}--${item.f_material_style}--${item.f_material_unit}`,
530
+ 'value': item
531
+ }
532
+ })
533
+ }
534
+ })
535
+ },
536
+ // 终止报建初始化·
537
+ async 'stopApplyReadyEvent' () {
538
+
539
+ let f_is_stop = this.getLableValue('是否终止')
540
+
541
+ for (const item of this.show_data.fields) {
542
+ if (f_is_stop === '是') {
543
+ if (item.label === '终止原因') {
544
+ item.hidden = false
545
+ item.required = true
546
+ }
547
+ } else {
548
+ if (item.label === '终止原因') {
549
+ item.hidden = true
550
+ item.required = false
551
+ }
552
+ }
553
+ }
554
+
555
+ if (isEmpty(this.show_data.f_parent_process_id)) {
556
+ return
557
+ }
558
+ let data = {
559
+ condition: `f_process_id = '${this.show_data.f_parent_process_id}'`,
560
+ data: {
561
+ id: this.$login.f.id,
562
+ orgid: this.$login.f.orgid
563
+ }
564
+ }
565
+ let res = await this.$resetpost(
566
+ `rs/sql/supervisory`,
567
+ {data: data},
568
+ {resolveMsg: null, rejectMsg: '项目查询失败!!!'}
569
+ )
570
+ this.show_data.parentApply = res.data[0]
571
+ },
572
+ // 通气点火初始化
573
+ async 'gasReadyEvent' () {
574
+ if (!isEmpty(this.show_data.f_price_id)) {
575
+ let priceList = await this.getPrice(this.show_data.f_price_id)
576
+ this.setLabelValue('气价名称', priceList[0].value)
577
+ }
578
+
579
+
580
+ // 保险初始化显示内容
581
+ let f_is_insure = this.getLableValue('是否购买保险')
582
+ for (const item of this.show_data.fields) {
583
+ if (f_is_insure === '是') {
584
+ if (item.label === '保费开始日期' || item.label === '保费结束日期' || item.label === '险种' || item.label === '保费金额') {
585
+ item.hidden = false
586
+ item.required = true
587
+ }
588
+ if (item.label === '保险备注') {
589
+ item.hidden = false
590
+ }
591
+ } else {
592
+ if (item.label === '保费开始日期' || item.label === '保费结束日期' || item.label === '险种' || item.label === '保费金额') {
593
+ item.hidden = true
594
+ item.required = false
595
+ }
596
+ if (item.label === '保险备注') {
597
+ item.hidden = true
598
+ }
599
+ }
600
+ }
601
+ },
602
+ // 申请节点初始化
603
+ 'applyReadyEvent' () {
604
+ this.$getConfig(this, 'UserAddress')
605
+
606
+ let f_address_type = this.show_data.f_address_type
607
+
608
+ for (const item of this.show_data.fields) {
609
+ if (f_address_type === '民用市区') {
610
+ if (item.label === '区/县' || item.label === '街道/乡镇' || item.label === '集收单位' || item.label === '门牌号') {
611
+ item.hidden = false
612
+ item.required = true
613
+ }
614
+ if (item.label === '楼号/组' || item.label === '单元/排' || item.label === '楼层') {
615
+ item.hidden = false
616
+ item.required = false
617
+ }
618
+ if (item.label === '地址') {
619
+ item.readonly = true
620
+ }
621
+ }
622
+ if (f_address_type === '民用乡镇') {
623
+ if (item.label === '区/县' || item.label === '街道/乡镇' || item.label === '集收单位' || item.label === '门牌号') {
624
+ item.hidden = false
625
+ item.required = true
626
+ }
627
+ if (item.label === '楼号/组' || item.label === '单元/排' || item.label === '楼层') {
628
+ item.hidden = false
629
+ item.required = false
630
+ }
631
+ if (item.label === '楼层') {
632
+ item.hidden = true
633
+ item.required = false
634
+ }
635
+ if (item.label === '地址') {
636
+ item.readonly = true
637
+ }
638
+ }
639
+ if (f_address_type === '特殊地址') {
640
+ if (item.label === '区/县' || item.label === '街道/乡镇') {
641
+ item.hidden = false
642
+ item.required = true
643
+ }
644
+ if (item.label === '集收单位') {
645
+ item.hidden = false
646
+ item.required = false
647
+ }
648
+ if (item.label === '楼号/组' || item.label === '单元/排' || item.label === '楼层' || item.label === '门牌号') {
649
+ item.hidden = true
650
+ item.required = false
651
+ }
652
+ if (item.label === '地址') {
653
+ item.readonly = false
654
+ }
655
+ }
656
+
657
+ if (this.show_data.f_apply_source === '线下发起' && item.label === '预约地址') {
658
+ item.hidden = true
659
+ }
660
+ }
661
+ },
662
+ // 失去焦点出触发事件
663
+ 'onchange' (index) {
664
+ if (this.show_data.defname === '报装申请' || this.show_data.defname === '信息确认') {
665
+ if (
666
+ this.show_data.fields[index].label === '区/县' ||
667
+ this.show_data.fields[index].label === '街道/乡镇' ||
668
+ this.show_data.fields[index].label === '集收单位' ||
669
+ this.show_data.fields[index].label === '楼号/组' ||
670
+ this.show_data.fields[index].label === '单元/排' ||
671
+ this.show_data.fields[index].label === '楼层' ||
672
+ this.show_data.fields[index].label === '门牌号'
673
+ ) {
674
+
675
+ let f_pcd = this.getLableValue('区/县') || ''
676
+ let f_street = this.getLableValue('街道/乡镇') || ''
677
+ let f_residential_area = this.getLableValue('集收单位') || ''
678
+ let f_building = this.getLableValue('楼号/组') || ''
679
+ let f_building_suffix = f_building ? this.config.f_building_suffix : ''
680
+ let f_unit = this.getLableValue('单元/排') || ''
681
+ let f_unit_suffix = f_unit ? this.config.f_unit_suffix : ''
682
+ let f_floor = this.getLableValue('楼层') || ''
683
+ let f_floor_suffix = f_floor ? this.config.f_floor_suffix : ''
684
+ let f_room = this.getLableValue('门牌号') || ''
685
+ let f_room_suffix = f_room ? this.config.f_room_suffix : ''
686
+
687
+ let f_address = f_pcd + f_street + f_residential_area + f_building + f_building_suffix + f_unit + f_unit_suffix + f_floor + f_floor_suffix + f_room + f_room_suffix
688
+ this.setLabelValue("地址", f_address)
689
+ }
690
+ }
691
+ },
692
+ // =============================
693
+ selectSearch (val, index) {},
694
+ 'onblur' (index) {},
695
+ 'oninput' (index) {},
696
+ 'initializtionView' () {},
697
+ async 'onchangeModal' (index, fieldIndex) {
698
+ },
699
+ async 'onblurModal' (index, fieldIndex) {
700
+
701
+ },
702
+ async 'oninputModal' (index, fieldIndex) {
703
+
704
+ },
705
+ async 'onetomanydelete' (index, rowIndex) {
706
+
707
+ let http = new HttpResetClass()
708
+
709
+ let res = await http.load(
710
+ 'DELETE',
711
+ `rs/entity/${this.show_data.onetomany[index].tables[0]}/${this.show_data.onetomany[index].rows[rowIndex].id}`,
712
+ null,
713
+ {resolveMsg: null, rejectMsg: '删除失败!!!'}
714
+ )
715
+
716
+ res = await this.$resetpost(
717
+ 'rs/entity/t_apply',
718
+ this.show_data
719
+ )
720
+
721
+ this.$dispatch('breakControl', this.show_data)
722
+ },
723
+ async 'onetomanyupdate' (index, rowIndex) {
724
+ let data = this.show_data.onetomany[index].rows[rowIndex]
725
+
726
+ this.show_data.onetomany[index].fields.forEach(item => {
727
+ data[item.field] = item.value
728
+ })
729
+ let res = await this.$resetpost(
730
+ `rs/entity/${this.show_data.onetomany[index].tables[0]}`,
731
+ data
732
+ )
733
+
734
+ res = await this.$resetpost(
735
+ 'rs/entity/t_apply',
736
+ this.show_data
737
+ )
738
+
739
+ this.$dispatch('breakControl', this.show_data)
740
+ },
741
+ async 'onetomanyadd' (index) {
742
+ let data = {
743
+ f_process_id : this.show_data.f_process_id,
744
+ f_operator_id: this.$login.f.id,
745
+ f_operator: this.$login.f.name,
746
+ f_operation_date: new Date().Format('yyyy-MM-dd HH:mm:ss'),
747
+ f_orgid: this.$login.f.orgid,
748
+ f_orgname: this.$login.f.orgs
749
+ }
750
+ this.show_data.onetomany[index].fields.forEach(item => {
751
+ data[item.field] = item.value
752
+ })
753
+ let res = await this.$resetpost(
754
+ `rs/entity/${this.show_data.onetomany[index].tables[0]}`,
755
+ data
756
+ )
757
+
758
+ res = await this.$resetpost(
759
+ 'rs/entity/t_apply',
760
+ this.show_data
761
+ )
762
+
763
+ this.$dispatch('breakControl', this.show_data)
764
+ },
765
+ async 'importEvent' (index, table, configName, filepath) {
766
+ let data = {
767
+ selectdata: this.show_data,
768
+ table: table,
769
+ filepath: filepath,
770
+ configName: configName,
771
+ user: this.$login.f
772
+ }
773
+
774
+ let res = await this.$resetpost(
775
+ `rs/logic/importEvent`,
776
+ data
777
+ )
778
+
779
+ this.$dispatch('breakControl', this.show_data)
780
+ },
781
+ 'onbutchange' (index) {
782
+
783
+ },
784
+ 'onbutblur' (index) {
785
+
786
+ },
787
+ 'onbutinput' (index) {
788
+
789
+ }
790
+ },
791
+ watch: {
792
+ deep: true
793
+ }
794
+ }
795
+ </script>
796
+ <style scoped>
797
+ /*清除model中的浮动*/
798
+ .clearfix:after,.clearfix:before{
799
+ display: table;
800
+ }
801
+ .clearfix:after{
802
+ clear: both;
803
+ }
804
+ </style>