没有波形图的时候显示暂无波形

This commit is contained in:
stt
2025-12-10 13:21:48 +08:00
parent 37ed693cea
commit 6824864db2

View File

@@ -68,7 +68,6 @@ const getSimpleLineList = async () => {
options.value = res.data options.value = res.data
} }
const tableStore: any = new TableStore({ const tableStore: any = new TableStore({
url: '/cs-harmonic-boot/event/pageEvent', url: '/cs-harmonic-boot/event/pageEvent',
method: 'POST', method: 'POST',
@@ -192,7 +191,7 @@ const tableStore: any = new TableStore({
icon: 'el-icon-DataLine', icon: 'el-icon-DataLine',
render: 'basicButton', render: 'basicButton',
disabled: row => { disabled: row => {
return !(!row.wavePath && row.evtParamTm < 20) return !!row.wavePath
} }
} }
] ]