apply-clients 5.0.35-82 → 5.0.35-85
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/components/app_apply/Gongcheng.vue +5 -5
- package/src/components/app_apply/ServiceControl.vue +7 -3
- package/src/components/product/EngineeringSupervisory/EngineeringSupervisoryServiceControl.vue +490 -486
- package/src/components/product/Function/functions/InstallFee.vue +1154 -1155
- package/src/components/product/Function/functions/InstallFeeInfo.vue +6 -1
- package/src/components/product/Supervisory/SupervisoryList.vue +15 -7
package/package.json
CHANGED
|
@@ -182,7 +182,7 @@ export default {
|
|
|
182
182
|
|
|
183
183
|
console.log(`param=>>>${JSON.stringify(param)}`)
|
|
184
184
|
let http = new HttpResetClass()
|
|
185
|
-
http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/
|
|
185
|
+
http.load('POST', `${this.$androidUtil.getProxyUrl()}/rs/sql/checkusergongchegn`, {data: param}).then(res => {
|
|
186
186
|
console.log(`前台本地报建代办工单查询结果data=>>>${JSON.stringify(res.data)}`)
|
|
187
187
|
if (res.data) {
|
|
188
188
|
this.rows = res.data
|
|
@@ -254,13 +254,13 @@ export default {
|
|
|
254
254
|
}, 6000000)// 60000
|
|
255
255
|
},
|
|
256
256
|
created() {
|
|
257
|
-
|
|
257
|
+
var result = HostApp.readLocalFile('workflow_apply.json')
|
|
258
258
|
if(result.code == 500){
|
|
259
259
|
this.$showMessage('获取流程配置文件失败,请联系系统管理员')
|
|
260
260
|
return
|
|
261
261
|
}
|
|
262
|
-
var data = JSON.parse(result.data)
|
|
263
|
-
|
|
262
|
+
var data = JSON.parse(result.data)
|
|
263
|
+
/* var data={
|
|
264
264
|
"start_activitys": [
|
|
265
265
|
"集体报装申请",
|
|
266
266
|
"报装申请",
|
|
@@ -3573,7 +3573,7 @@ export default {
|
|
|
3573
3573
|
]
|
|
3574
3574
|
}
|
|
3575
3575
|
]
|
|
3576
|
-
}
|
|
3576
|
+
}*/
|
|
3577
3577
|
|
|
3578
3578
|
console.log('前台存入缓存中的data=>' + JSON.stringify(data))
|
|
3579
3579
|
Vue.workflow_vue = Vue.prototype.$workflow_vue = data
|
|
@@ -426,9 +426,12 @@ export default {
|
|
|
426
426
|
for (let i = 0; i < this.$refs.service_show.data.fields.length; i++) {
|
|
427
427
|
if(this.$refs.service_show.data.fields[i].label=="施工已上传文件"){
|
|
428
428
|
//增加和删除框中的内容
|
|
429
|
+
if (this.$refs.service_show.data.fields[i].value==undefined){
|
|
430
|
+
this.$refs.service_show.data.fields[i].value=''
|
|
431
|
+
}
|
|
429
432
|
if(this.$refs.service_show.data.fields[index].items[index2].value == false){
|
|
430
|
-
|
|
431
|
-
this.$refs.service_show.data.fields[i].value=this.$refs.service_show.data.fields[i].value==undefined?'':this.$refs.service_show.data.fields[i].value+this.$refs.service_show.data.fields[index].items[index2].label+" ";
|
|
433
|
+
this.$refs.service_show.data.fields[i].value+=this.$refs.service_show.data.fields[index].items[index2].label+" ";
|
|
434
|
+
// this.$refs.service_show.data.fields[i].value=this.$refs.service_show.data.fields[i].value==undefined?'':this.$refs.service_show.data.fields[i].value+this.$refs.service_show.data.fields[index].items[index2].label+" ";
|
|
432
435
|
this.$refs.service_show.data.fields[index].items[index2].value=true;
|
|
433
436
|
}else{
|
|
434
437
|
let deleteValue = this.$refs.service_show.data.fields[index].items[index2].label;
|
|
@@ -449,7 +452,8 @@ export default {
|
|
|
449
452
|
if(this.$refs.service_show.data.fields[i].label=="验收已上传文件"){
|
|
450
453
|
//增加和删除框中的内容
|
|
451
454
|
if(this.$refs.service_show.data.fields[index].items[index2].value == false){
|
|
452
|
-
this.$refs.service_show.data.fields[i].value
|
|
455
|
+
this.$refs.service_show.data.fields[i].value+=this.$refs.service_show.data.fields[index].items[index2].label+" ";
|
|
456
|
+
// this.$refs.service_show.data.fields[i].value=this.$refs.service_show.data.fields[i].value==undefined?'':this.$refs.service_show.data.fields[i].value+this.$refs.service_show.data.fields[index].items[index2].label+" ";
|
|
453
457
|
this.$refs.service_show.data.fields[index].items[index2].value=true;
|
|
454
458
|
}else{
|
|
455
459
|
let deleteValue = this.$refs.service_show.data.fields[index].items[index2].label;
|