diff --git a/src/views/courselibrary/CoursewareManage.vue b/src/views/courselibrary/CoursewareManage.vue index 446556d8..62fb9a6c 100644 --- a/src/views/courselibrary/CoursewareManage.vue +++ b/src/views/courselibrary/CoursewareManage.vue @@ -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,