Commit c495655d by zhaochengxiang

重点关注列取消

parent b0084bbb
......@@ -504,26 +504,26 @@ const ImportActionTable = (props) => {
return (index+1).toString();
}
},
{
title: '重点关注',
width: 75,
dataIndex: 'needAttention',
fixed: 'left',
editable: (type==='model'?true:false),
render: (needAttention, record, index) => {
if (!needAttention) {
return (
<CloseOutlined />
);
} else if (needAttention === true) {
return (
<CheckOutlined />
)
}
return '';
}
},
// {
// title: '重点关注',
// width: 75,
// dataIndex: 'needAttention',
// fixed: 'left',
// editable: (type==='model'?true:false),
// render: (needAttention, record, index) => {
// if (!needAttention) {
// return (
// <CloseOutlined />
// );
// } else if (needAttention === true) {
// return (
// <CheckOutlined />
// )
// }
// return '';
// }
// },
{
title: '中文名称',
width: 200,
......
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