diff --git a/src/views/examine/CourseReviewed.vue b/src/views/examine/CourseReviewed.vue
index 6535e016..dec15056 100644
--- a/src/views/examine/CourseReviewed.vue
+++ b/src/views/examine/CourseReviewed.vue
@@ -117,6 +117,38 @@ export default {
currentPage: 1,
total: null,
pageSize: 10,
+ //审核记录的表
+ columnsAudit: [
+ {
+ title: "审核人",
+ dataIndex: "createName",
+ key: "createName",
+ align: "center",
+ },
+
+ {
+ title: "审核状态",
+ dataIndex: "status",
+ key: "status",
+ align: "center",
+ customRender: ({record: {status}}) =>
{{'2': '审核通过', '-2': '审核拒绝'}[(status + '')]}
,
+ },
+
+ {
+ title: "审核时间",
+ dataIndex: "createTime",
+ key: "createTime",
+ align: "center",
+ width: 220
+ },
+
+ {
+ title: "备注",
+ dataIndex: "description",
+ key: "description",
+ align: "center",
+ },
+ ],
columns1: [
{
title: "序号",
@@ -180,7 +212,8 @@ export default {
return {
- showProjAuditModal(value.record.auditList);
+ console.log(value)
+ showProjAuditModal(value.record.auditLogDtoList);
}}>审核日志
;
},
},
@@ -247,10 +280,12 @@ export default {
creater: item.createName,
time: item.createTime,
msg: item.description || "-",
+ auditLogDtoList: item.auditLogDtoList
};
array.push(obj);
});
state.tableData1 = array;
+ console.log(data)
};
const reset = () => {
(state.valueproj = ''),