预告警问题详情查看

This commit is contained in:
2024-05-29 19:01:34 +08:00
parent 70b624066f
commit ad298c727c
4 changed files with 206 additions and 168 deletions

View File

@@ -94,7 +94,7 @@ const tableStore = new TableStore({
render: 'basicButton',
click: row => {
// handleAudit(row.processInstanceId)
ElMessage.warning("待打通生成管理系统接口!")
ElMessage.warning('待打通生成管理系统接口!')
}
},
{
@@ -107,7 +107,7 @@ const tableStore = new TableStore({
return row.status !== 5
},
click: row => {
feedbackPopup.value.open('填报反馈单',row.id,row.status)
feedbackPopup.value.open('填报反馈单', row.id, row.status, row.issueDetail,row.problemPath)
}
},
@@ -121,7 +121,7 @@ const tableStore = new TableStore({
return row.status == 5
},
click: row => {
handleAudit(row.processInstanceId)
handleAudit(row.processInstanceId)
}
},
{
@@ -171,12 +171,12 @@ onMounted(() => {
/** 流程实例详情 */
const handleAudit = (instanceId: any) => {
push({
name: 'BpmProcessInstanceDetail',
query: {
id: instanceId
}
})
push({
name: 'BpmProcessInstanceDetail',
query: {
id: instanceId
}
})
}
</script>