feat:增加项目-学员管理-学员列表-进度

This commit is contained in:
wyx
2023-01-15 15:21:10 +08:00
parent a252610dfe
commit e648f4e414

View File

@@ -1858,6 +1858,20 @@ export default {
</div> </div>
), ),
}, },
{
title: "状态",
dataIndex: "status",
key: "status",
width: 80,
align: "center",
className: "h",
ellipsis: true,
customRender: ({ record }) => (
<div>
{record.finishTaskNum ==0?"未开始":record.finishTaskNum == record.totalTaskNum?"已完成":"进行中"}
</div>
),
},
{ {
title: "最近学习时间", title: "最近学习时间",
dataIndex: "lastStudyTime", dataIndex: "lastStudyTime",