Commit 56604647 by zhaochengxiang

重点关注

parent 6b7357df
...@@ -411,6 +411,23 @@ export const ImportActionTable = (props) => { ...@@ -411,6 +411,23 @@ export const ImportActionTable = (props) => {
} }
}, },
{ {
title: '重点关注',
width: 75,
dataIndex: 'needAttention',
editable: false,
render: (needAttention, record, index) => {
if (!needAttention) {
return '-';
} else if (needAttention === true) {
return (
<CheckOutlined />
)
}
return '';
}
},
{
title: '业务含义', title: '业务含义',
dataIndex: 'remark', dataIndex: 'remark',
editable: true, editable: true,
......
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