This commit is contained in:
guanj
2026-05-26 16:23:18 +08:00
parent 8b80e0678f
commit faac12615d
20 changed files with 941 additions and 140 deletions

View File

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