1、相关方端延迟监火转发企业端时无数据。bug修复
parent
c2a2088130
commit
4d7c70aeaf
|
@ -47,6 +47,7 @@ export default {
|
||||||
EW_RU_TASK_ID: '',
|
EW_RU_TASK_ID: '',
|
||||||
EW_RU_JOB_ID: '',
|
EW_RU_JOB_ID: '',
|
||||||
TYPE: '',
|
TYPE: '',
|
||||||
|
CORP_ID: '',
|
||||||
isView: '1'
|
isView: '1'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -55,6 +56,7 @@ export default {
|
||||||
this.EW_RU_TASK_ID = event.taskId
|
this.EW_RU_TASK_ID = event.taskId
|
||||||
this.EW_RU_JOB_ID = event.EW_RU_JOB_ID
|
this.EW_RU_JOB_ID = event.EW_RU_JOB_ID
|
||||||
this.TYPE = event.TYPE
|
this.TYPE = event.TYPE
|
||||||
|
this.CORP_ID = event.CORP_ID
|
||||||
this.isView = event.isView
|
this.isView = event.isView
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
|
@ -86,7 +88,7 @@ export default {
|
||||||
goToTaskForword() {
|
goToTaskForword() {
|
||||||
uni.$u.route({
|
uni.$u.route({
|
||||||
url: '/pages/eight_assignments/hot_work/delay_fire_monitoring/task_forward',
|
url: '/pages/eight_assignments/hot_work/delay_fire_monitoring/task_forward',
|
||||||
params: {taskId: this.EW_RU_TASK_ID, EW_RU_JOB_ID:this.EW_RU_JOB_ID,TYPE:this.TYPE}
|
params: {taskId: this.EW_RU_TASK_ID, EW_RU_JOB_ID:this.EW_RU_JOB_ID,TYPE:this.TYPE,CORP_ID:this.CORP_ID}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -31,6 +31,7 @@ export default {
|
||||||
},
|
},
|
||||||
EW_RU_TASK_ID: '',
|
EW_RU_TASK_ID: '',
|
||||||
EW_RU_JOB_ID: '',
|
EW_RU_JOB_ID: '',
|
||||||
|
CORP_ID: '',
|
||||||
TYPE: ''
|
TYPE: ''
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -39,6 +40,7 @@ export default {
|
||||||
this.STATE = event.state;
|
this.STATE = event.state;
|
||||||
this.EW_RU_TASK_ID = event.taskId
|
this.EW_RU_TASK_ID = event.taskId
|
||||||
this.EW_RU_JOB_ID = event.EW_RU_JOB_ID
|
this.EW_RU_JOB_ID = event.EW_RU_JOB_ID
|
||||||
|
this.CORP_ID = event.CORP_ID
|
||||||
this.TYPE = event.TYPE
|
this.TYPE = event.TYPE
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
@ -108,7 +108,5 @@ export default {
|
||||||
.flex_btn{
|
.flex_btn{
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -29,7 +29,11 @@ const processFormData = async (formData, formItems) => {
|
||||||
const currentItem = uni.$u.deepClone(formData[formItem.key_name])
|
const currentItem = uni.$u.deepClone(formData[formItem.key_name])
|
||||||
const codeList = []
|
const codeList = []
|
||||||
for (let j = 0; j < currentItem.length; j++) {
|
for (let j = 0; j < currentItem.length; j++) {
|
||||||
const {CODE} = await setTaskFile({formData: {type: currentItem[j].oldUrl}, name: 'files', filePath: currentItem[j].url})
|
const {CODE} = await setTaskFile({
|
||||||
|
name: 'files',
|
||||||
|
filePath: currentItem[j].url,
|
||||||
|
formData: {type: currentItem[j].oldUrl}
|
||||||
|
})
|
||||||
codeList.push(CODE)
|
codeList.push(CODE)
|
||||||
}
|
}
|
||||||
obj.ITEM_VALUE = ''
|
obj.ITEM_VALUE = ''
|
||||||
|
|
Loading…
Reference in New Issue