事件补召,前置调整

This commit is contained in:
sjl
2025-10-30 16:35:49 +08:00
parent 55a30a323d
commit 130db82e41
6 changed files with 121 additions and 30 deletions

View File

@@ -134,7 +134,7 @@ const tableStore: any = new TableStore({
icon: 'el-icon-DataLine',
render: 'basicButton',
disabled: row => {
return props.deviceType === '2' || row.wavePath;
return row.showName != '未知';
}
},
{
@@ -169,8 +169,8 @@ const tableStore: any = new TableStore({
icon: 'el-icon-Check',
render: 'basicButton',
disabled: row => {
return props.deviceType != '2' || row.wavePath;
},
return props.deviceType === '2' && row.wavePath || row.showName === '未知';
},
click: row => {
getFileByEventId(row.id).then(res => {
ElMessage.success(res.message)