mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-17 14:56:46 +08:00
feat:增加已审核课程日志显示部分数据接入
This commit is contained in:
@@ -145,10 +145,13 @@ export default {
|
|||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
customRender: (text) => (
|
customRender: (text) => (
|
||||||
<div>
|
<div>
|
||||||
{text.record.createName}
|
{text.record.createName} {' '}审核{' '}
|
||||||
<br/>
|
{
|
||||||
{/* <a-tag color="green">通过</a-tag> */}
|
text.record.status == 2?
|
||||||
{{ 2: "审核通过", "-2": "审核拒绝" }[text.record.status + ""]}
|
<a-tag color="green">通过</a-tag>
|
||||||
|
:
|
||||||
|
<a-tag color="red">拒绝</a-tag>
|
||||||
|
}
|
||||||
<br/>
|
<br/>
|
||||||
{text.record.createTime}
|
{text.record.createTime}
|
||||||
</div>
|
</div>
|
||||||
@@ -164,20 +167,53 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
title: "审核状态",
|
title: "转审",
|
||||||
dataIndex: "status",
|
dataIndex: "status",
|
||||||
key: "status",
|
key: "status",
|
||||||
align: "center",
|
align: "center",
|
||||||
// width: "20%",
|
// width: "20%",
|
||||||
customRender: ({ record: { status } }) => (
|
customRender: (text) => (
|
||||||
<div>{{ 2: "审核通过", "-2": "审核拒绝" }[status + ""]}</div>
|
text.record.inviteCreateName?
|
||||||
|
<div>
|
||||||
|
{text.record.inviteCreateName} {' '}审核{' '}
|
||||||
|
{
|
||||||
|
text.record.inviteStatus == 2?
|
||||||
|
<a-tag color="green">通过</a-tag>
|
||||||
|
:
|
||||||
|
text.record.inviteStatus == -2?
|
||||||
|
<a-tag color="red">拒绝</a-tag>
|
||||||
|
:
|
||||||
|
<a-tag color="green">待审核</a-tag>
|
||||||
|
}
|
||||||
|
<br/>
|
||||||
|
{text.record.inviteCreateTime}
|
||||||
|
</div>
|
||||||
|
:''
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
title: "审核时间",
|
title: "转审备注",
|
||||||
dataIndex: "createTime",
|
dataIndex: "inviteDescription",
|
||||||
key: "createTime",
|
key: "inviteDescription",
|
||||||
|
align: "center",
|
||||||
|
// width: "20%",
|
||||||
|
ellipsis: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
title: "公开课审核",
|
||||||
|
dataIndex: "gkka",
|
||||||
|
key: "inviteDescription",
|
||||||
|
align: "center",
|
||||||
|
// width: "20%",
|
||||||
|
ellipsis: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
title: "公开课备注",
|
||||||
|
dataIndex: "gkkb",
|
||||||
|
key: "inviteDescription",
|
||||||
align: "center",
|
align: "center",
|
||||||
// width: "20%",
|
// width: "20%",
|
||||||
ellipsis: true,
|
ellipsis: true,
|
||||||
@@ -262,7 +298,7 @@ export default {
|
|||||||
style="color:#387DF7;cursor:pointer;"
|
style="color:#387DF7;cursor:pointer;"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
console.log(value);
|
console.log(value);
|
||||||
showProjAuditModal(value.record.auditLogDtoList.length !== 0 ? value.record.auditLogDtoList : []);
|
showProjAuditModal(value.record.auditLogDtoList?value.record.auditLogDtoList.length !== 0 ? value.record.auditLogDtoList : []:[]);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
审核日志
|
审核日志
|
||||||
|
|||||||
Reference in New Issue
Block a user