Commit c495655d by zhaochengxiang

重点关注列取消

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