2023年10月24日 修复显示问题

This commit is contained in:
bai 2023-10-24 21:22:06 +08:00
parent c08f36d16d
commit c8a519d812
2 changed files with 5 additions and 2 deletions

View File

@ -19,7 +19,7 @@ export const columns: BasicColumn[] = [
align:"center",
dataIndex: 'logType',
customRender: ({ text }) => {
let map = ['','自动执行', '手动操作']
let map = ['','播放成功', '播放失败']
return map[text]
},
},

View File

@ -7,7 +7,10 @@ export const columns: BasicColumn[] = [
{
title: '操作人',
align:"center",
dataIndex: 'createBy_dictText'
dataIndex: 'createBy_dictText',
customRender: ({ text }) => {
return text?? '系统';
},
},
{
title: '时间',