问题修改

This commit is contained in:
zhujiyan
2024-05-23 16:36:32 +08:00
parent 5985a3c153
commit 42109a1478
3 changed files with 40 additions and 28 deletions

View File

@@ -49,13 +49,25 @@ const tableStore = new TableStore({
{ field: 'complaintText', title: '投诉内容' },
{ field: 'steadyIndicator', title: '稳态指标' },
{ field: 'transientIndicators', title: '暂态指标' },
{ field: 'monitorName', title: '监测点名称' },
{ field: 'monitorNumber', title: '监测点编号' },
{
field: 'monitorName',
title: '监测点名称',
formatter: (row: any) => {
return row.cellValue ? row.cellValue : '/'
}
},
{
field: 'monitorNumber',
title: '监测点编号',
formatter: (row: any) => {
return row.cellValue ? row.cellValue : '/'
}
},
{
field: 'detectionFlag',
title: '是否实现监测',
formatter: (row: any) => {
return row.cellvalue == '0' ? '否' : '是'
return row.cellValue == '0' ? '否' : '是'
}
},
{