fix:外部考试任务状态判断修改

This commit is contained in:
wyx
2023-02-10 19:20:54 +08:00
parent 5aa26b6f37
commit 0a6c3151a6
2 changed files with 2 additions and 2 deletions

View File

@@ -321,7 +321,7 @@
align: "center",
ellipsis: true,
className: "h",
customRender: ({record:{status}}) => ({0:'未开始',1:'进行中',9:'已完成'}[status] || '未开始'),
customRender: ({record:{status}}) => ({0:'未开始',1:'进行中',null:'进行中',2:'已完成'}[status] || '未开始'),
},
],
loadingData: true

View File

@@ -325,7 +325,7 @@
align: "center",
ellipsis: true,
className: "h",
customRender: ({record:{status}}) => ({0:'未开始',1:'进行中',9:'已完成'}[status] || '未开始'),
customRender: ({record:{status}}) => ({0:'未开始',1:'进行中',null:'进行中',2:'已完成'}[status] || '未开始'),
},
],
loadingData: true