mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-08 18:36:46 +08:00
【bug:SZX-1155】在线课程管理列表中,增加两列:审核人和审核时间。
This commit is contained in:
@@ -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: "是否发布",
|
title: "是否发布",
|
||||||
width: 100,
|
width: 100,
|
||||||
|
|||||||
Reference in New Issue
Block a user