历史趋势添加缺失数据功能

This commit is contained in:
guanj
2025-10-31 13:41:48 +08:00
parent 13c0a28c95
commit dc44e16d4d
8 changed files with 2833 additions and 2530 deletions

View File

@@ -94,7 +94,15 @@ const tableStore = new TableStore({
},
{ title: '设备名称', field: 'ndid', align: 'center' },
{ title: '异常时间', field: 'evtTime', align: 'center', sortable: true },
{ title: '告警代码', field: 'code', align: 'center', sortable: true }
{
title: '告警代码',
field: 'code',
align: 'center',
sortable: true,
formatter: (row: any) => {
return row.cellValue ? '\u200B' + row.cellValue : '/'
}
}
]
})