fix:待审核课程预览问题,已审核项目审核说明字段添加

This commit is contained in:
wyx
2022-12-04 11:12:24 +08:00
parent dd0ad2f508
commit 959b048915
2 changed files with 20 additions and 10 deletions

View File

@@ -188,6 +188,7 @@ export default {
key: "topName",
align: "center",
width: "10%",
customRender: ({record: {parentId,name}}) => <div>{parentId==0?name:(parentId)}</div>,
},
{
title: "项目经理",
@@ -219,6 +220,7 @@ export default {
dataIndex: "description",
key: "description",
align: "center",
customRender: ({record: {auditList,description}}) => <div>{auditList.length!==0?auditList[auditList.length-1].description?auditList[auditList.length-1].description:'-':description?description:'-'}</div>,
},
{
@@ -290,6 +292,7 @@ export default {
status: 1,
};
auditedlist(objn).then((res) => {
console.log('获取已审核项目列表数据',res)
let result = res.data.data;
state.total = res.data.data.total;
state.tableData1 = result.rows
@@ -347,7 +350,7 @@ export default {
reset,
closeProjAuditModal,
showProjAuditModal,
setAudit,
setAudit
};
},
};