修改浙江无线测试用例bug
This commit is contained in:
@@ -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: () => {
|
||||
|
||||
Reference in New Issue
Block a user