修改任务状态展示问题

This commit is contained in:
何童崇 2021-09-30 17:06:33 +08:00
parent 230e597787
commit a667a32de0
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ export default Form.create()(({ form, showNotification, match, history }) => {
width: '10%',
dataIndex: 'status',
render: (text, record) => {
return statusArr[text]
return record.exceptClosedBoolean ? '已关闭' : statusArr[text]
}
},
{