apply-clients 3.4.70 → 3.4.72
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.
- package/package.json +1 -1
- package/src/filiale/shexian/android/AppExplorationUser.vue +2 -22
- package/src/filiale/shexian/android/AppServiceControl.vue +1734 -0
- package/src/filiale/shexian/android/AppTakePic.vue +145 -0
- package/src/filiale/shexian/android.js +3 -1
- package/src/filiale/shexian/pc/ExplorationSelect.vue +6 -3
- package/src/filiale/shexian/pc/ServiceControl.vue +8 -7
- package/src/filiale/shexian/pc.js +7 -7
- package/src/main.js +23 -23
package/package.json
CHANGED
|
@@ -335,7 +335,7 @@ export default {
|
|
|
335
335
|
this.$refs.cp.$refs.cri.search()
|
|
336
336
|
},
|
|
337
337
|
searchCondition (args) {
|
|
338
|
-
args.condition = args.condition + `and (act.defname in ('现场勘查','
|
|
338
|
+
args.condition = args.condition + `and (act.defname in ('现场勘查','点火派单')) `
|
|
339
339
|
this.model.search(args.condition, args.model)
|
|
340
340
|
},
|
|
341
341
|
click (row) {
|
|
@@ -376,30 +376,9 @@ export default {
|
|
|
376
376
|
if (this.applyType === '散户报建') {
|
|
377
377
|
data.processname = '散户报建流程'
|
|
378
378
|
data.defname = '报装申请'
|
|
379
|
-
} else if (this.applyType === '工商户报建') {
|
|
380
|
-
data.processname = '工商户报建流程'
|
|
381
|
-
data.defname = '报装申请'
|
|
382
|
-
} else if (this.applyType === '改管报建') {
|
|
383
|
-
data.processname = '改管报建流程'
|
|
384
|
-
data.defname = '报装申请'
|
|
385
|
-
} else if (this.applyType === '增容报建') {
|
|
386
|
-
data.processname = '增容报建流程'
|
|
387
|
-
data.defname = '报装申请'
|
|
388
379
|
} else if (this.applyType === '团购报建') {
|
|
389
380
|
data.processname = '团购报建流程'
|
|
390
381
|
data.defname = '报装申请'
|
|
391
|
-
} else if (this.applyType === '退款报建') {
|
|
392
|
-
data.processname = '退款报建流程'
|
|
393
|
-
data.defname = '终止报建'
|
|
394
|
-
} else if (this.applyType === '团购转散户') {
|
|
395
|
-
data.processname = '团购转散户报建流程'
|
|
396
|
-
data.defname = '信息确认'
|
|
397
|
-
}else if (this.applyType === '报警器报建') {
|
|
398
|
-
data.processname = '报警器报建流程'
|
|
399
|
-
data.defname = '报装申请'
|
|
400
|
-
}else if (this.applyType === '工商业报警器报建') {
|
|
401
|
-
data.processname = '工商业报警器报建流程'
|
|
402
|
-
data.defname = '报装申请'
|
|
403
382
|
} else {
|
|
404
383
|
this.$showMessage('暂无此类报装')
|
|
405
384
|
return
|
|
@@ -439,6 +418,7 @@ export default {
|
|
|
439
418
|
appDefnames () {
|
|
440
419
|
// let list = [{label: '报装缴费', value: '报装缴费'}, {label: '通气点火', value: '通气点火'},{label: '工程施工', value: '工程施工'},{label: '工程派工', value: '工程派工'},{label: '点火派单', value: '点火派单'}]
|
|
441
420
|
let list = this.$appdata.getParam('手机节点')
|
|
421
|
+
console.log('111111111111111111',list)
|
|
442
422
|
return `(${list.map(item => `'${item.value}'`).toString()})`
|
|
443
423
|
}
|
|
444
424
|
}
|