修改浙江无线测试用例bug

This commit is contained in:
GGJ
2024-12-17 20:57:07 +08:00
parent e10ca83ec5
commit 21831dda90
32 changed files with 873 additions and 254 deletions

View File

@@ -69,12 +69,19 @@ const tableStore = new TableStore({
{ title: '项目名称', field: 'projectName', align: 'center' },
{
title: '告警代码', field: 'code', align: 'center', formatter: (row: any) => {
console.log("🚀 ~ row:", row)
return row.cellValue ? row.cellValue : '/'
}
},
{ title: '事件描述', field: 'showName', align: 'center' },
{
title: '事件描述', field: 'showName',
},
{
title: '级别', field: 'level',formatter: (row: any) => {
return row.cellValue == 1 ? '1级' : row.cellValue == 2 ? '2级' : row.cellValue == 3 ? '3级' : '/'
}
},
{ title: '发生时刻', field: 'startTime', align: 'center' }
],
beforeSearchFun: () => {