fix:公用模块任务状态显示模块字段同步

This commit is contained in:
wyx
2023-01-07 13:28:21 +08:00
parent 26e189de84
commit 17b8053cdd
4 changed files with 14 additions and 14 deletions

View File

@@ -274,15 +274,15 @@
{
title: "任务状态",
dataIndex: "status",
key: "status",
dataIndex: "finishStatus",
key: "finishStatus",
width: 60,
align: "center",
className: "h",
customRender: (text) => {
return (
<div class="racona">
<span> {text.record.status == 0 || text.record.status==null ? "未开始" :text.record.status == 1 ?"已完成":"进行中"}</span>
<span> {text.record.finishStatus == 0 || text.record.finishStatus==null ? "未开始" :text.record.finishStatus == 1 ?"已完成":"进行中"}</span>
</div>
);
},