Commit dd7918da by zhaochengxiang

bug fix

parent db778ec4
...@@ -93,14 +93,17 @@ const FC = (props) => { ...@@ -93,14 +93,17 @@ const FC = (props) => {
{ {
title: '数量', title: '数量',
dataIndex: 'resourceNum', dataIndex: 'resourceNum',
render: (text, record) => text ? text : 0,
}, },
{ {
title: '已完成', title: '已完成',
dataIndex: 'doneNum', dataIndex: 'doneNum',
render: (text, record) => text ? text : 0,
}, },
{ {
title: '已复核', title: '已复核',
dataIndex: 'checkedNum', dataIndex: 'checkedNum',
render: (text, record) => text ? text : 0,
}, },
{ {
title: '分配人', title: '分配人',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment