【bug:SZX-1155】在线课程管理列表中,增加两列:审核人和审核时间。

This commit is contained in:
xu
2025-11-07 15:47:06 +08:00
parent 37863aee7f
commit a5c109a5c8

View File

@@ -2112,6 +2112,26 @@ export default defineComponent({
}
},
},
{
title: "审核人",
width: 120,
dataIndex: "auditUser",
key: "auditUser",
align: "center",
customRender: ({ text }) => {
return text ? text : "-";
},
},
{
title: "审核时间",
width: 160,
dataIndex: "auditTime",
key: "auditTime",
align: "center",
customRender: ({ text }) => {
return text ? text : "-";
},
},
{
title: "是否发布",
width: 100,