fix : 修复公告问题

This commit is contained in:
dj
2025-04-29 11:29:06 +08:00
parent c27162f918
commit af275ea6c4
3 changed files with 15 additions and 3 deletions

View File

@@ -94,7 +94,14 @@ const articleTableConfig = reactive({
{
prop: 'remarks',
label: '发文单位',
align: 'center'
align: 'center',
currentRender: ({row, index}) => {
if (!row.remarks|| row.remarks == undefined || row.remarks == null) {
return '--'
} else {
return row.remarks
}
}
},
{
prop: 'oper',