联调 技术监督 草稿功能

This commit is contained in:
GGJ
2024-06-20 16:54:19 +08:00
parent ac1335985f
commit 3a49fbf6a8
15 changed files with 256 additions and 98 deletions

View File

@@ -77,6 +77,7 @@ const tableStore = new TableStore({
}
},
{ field: 'dutyOrgName', title: '负责单位', minWidth: '150' },
{ field: 'reformAdvice', title: '整改意见', minWidth: '150' },
{ field: 'leafletName', title: '单据名称', minWidth: '150' },
{ field: 'issueDetail', title: '告警内容', minWidth: '150' },
{
@@ -139,7 +140,14 @@ const tableStore = new TableStore({
return row.status !== 5
},
click: row => {
feedbackPopup.value.open('填报反馈单', row.id, row.status, row.issueDetail, row.problemPath)
feedbackPopup.value.open(
'填报反馈单',
row.id,
row.status,
row.issueDetail,
row.problemPath,
row.reformAdvice
)
}
},
@@ -150,7 +158,7 @@ const tableStore = new TableStore({
icon: 'el-icon-EditPen',
render: 'basicButton',
disabled: row => {
return row.status == 5
return !row.processInstanceId
},
click: row => {
handleAudit(row.processInstanceId, row.historyInstanceId)
@@ -172,6 +180,8 @@ const tableStore = new TableStore({
row.status,
row.issueDetail,
row.problemPath,
row.reformAdvice ,
row.takeStep,
row.reportPath
)
@@ -194,8 +204,10 @@ const tableStore = new TableStore({
row.status,
row.issueDetail,
row.problemPath,
row.reformAdvice ,
row.takeStep,
row.reportPath
row.reportPath,
row.reformAdvice
)
}
},