2023年10月24日 修复显示问题
This commit is contained in:
parent
c08f36d16d
commit
c8a519d812
|
@ -19,7 +19,7 @@ export const columns: BasicColumn[] = [
|
|||
align:"center",
|
||||
dataIndex: 'logType',
|
||||
customRender: ({ text }) => {
|
||||
let map = ['','自动执行', '手动操作']
|
||||
let map = ['','播放成功', '播放失败']
|
||||
return map[text]
|
||||
},
|
||||
},
|
||||
|
|
|
@ -7,7 +7,10 @@ export const columns: BasicColumn[] = [
|
|||
{
|
||||
title: '操作人',
|
||||
align:"center",
|
||||
dataIndex: 'createBy_dictText'
|
||||
dataIndex: 'createBy_dictText',
|
||||
customRender: ({ text }) => {
|
||||
return text?? '系统';
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '时间',
|
||||
|
|
Loading…
Reference in New Issue