This commit is contained in:
2024-09-14 10:20:49 +08:00
parent cb9a0fe5e4
commit b870839d39
7 changed files with 244 additions and 176 deletions

View File

@@ -137,7 +137,6 @@ const tableStore = new TableStore({
}
// 特殊处理终端监测点状态切换
if (
// 干扰源建档
key == 'build_user_info'
@@ -192,8 +191,20 @@ const tableStore = new TableStore({
return row.source == 1 || row.source == 2
},
click: row => {
flag.value = true
handleAudit(row.processInstanceId, row.historyInstanceId)
// 页面内tab切换
let type = row.tabValue
let key = '3'
// 业务记录id
let id = row.id
router.push({
name: row.routePath,
query: {
type,
id,
key,
t: Date.now()
}
})
}
}
]