diff --git a/src/pages/Evaluation/BidControl/BidControlManager/components/ViewBlacklistFormModal.tsx b/src/pages/Evaluation/BidControl/BidControlManager/components/ViewBlacklistFormModal.tsx index 6203217..05d3c99 100644 --- a/src/pages/Evaluation/BidControl/BidControlManager/components/ViewBlacklistFormModal.tsx +++ b/src/pages/Evaluation/BidControl/BidControlManager/components/ViewBlacklistFormModal.tsx @@ -68,14 +68,7 @@ const ViewBlacklistFormModal: React.FC = (props) => return a; } }, - { - title: '黑名单等级', dataIndex: 'lv', render: (_, record) => { - if (record.isBlack == "1") { - return (isEmpty(record.lv) || record.lv == "1") ? '一级' : '二级'; - } - return ''; - } - }, + { title: '黑名单等级', dataIndex: 'lvName', }, { title: '黑名单开始时间', dataIndex: 'startTime', }, { title: '黑名单结束时间', dataIndex: 'endTime', }, { title: '黑名单期限', dataIndex: 'term', }, diff --git a/src/pages/Evaluation/BidControl/BidControlManager/components/ViewInvoiceFormModal.tsx b/src/pages/Evaluation/BidControl/BidControlManager/components/ViewInvoiceFormModal.tsx index 951eb09..916669b 100644 --- a/src/pages/Evaluation/BidControl/BidControlManager/components/ViewInvoiceFormModal.tsx +++ b/src/pages/Evaluation/BidControl/BidControlManager/components/ViewInvoiceFormModal.tsx @@ -32,10 +32,7 @@ const ViewInvoiceFormModal: React.FC = (props) => { dataIndex: 'ouName', }, { title: '黑名单等级', - dataIndex: 'reserved5', - render: (_: any, record: any) => { - return (isEmpty(record.reserved5) || record.reserved5 == "1") ? '一级' : '二级'; - } + dataIndex: 'lvName', }, { title: '黑名单开始时间', dataIndex: 'startTime',