diff --git a/src/pages/Evaluation/BidControl/BidControlManager/components/ViewBlacklistFormModal.tsx b/src/pages/Evaluation/BidControl/BidControlManager/components/ViewBlacklistFormModal.tsx index ff40425..6203217 100644 --- a/src/pages/Evaluation/BidControl/BidControlManager/components/ViewBlacklistFormModal.tsx +++ b/src/pages/Evaluation/BidControl/BidControlManager/components/ViewBlacklistFormModal.tsx @@ -71,7 +71,7 @@ const ViewBlacklistFormModal: React.FC = (props) => { title: '黑名单等级', dataIndex: 'lv', render: (_, record) => { if (record.isBlack == "1") { - return isEmpty(record.lv) || '1' ? '一级' : '二级'; + return (isEmpty(record.lv) || record.lv == "1") ? '一级' : '二级'; } return ''; } diff --git a/src/pages/Evaluation/BidControl/BidControlManager/components/ViewInvoiceFormModal.tsx b/src/pages/Evaluation/BidControl/BidControlManager/components/ViewInvoiceFormModal.tsx index e498ac5..951eb09 100644 --- a/src/pages/Evaluation/BidControl/BidControlManager/components/ViewInvoiceFormModal.tsx +++ b/src/pages/Evaluation/BidControl/BidControlManager/components/ViewInvoiceFormModal.tsx @@ -32,9 +32,9 @@ const ViewInvoiceFormModal: React.FC = (props) => { dataIndex: 'ouName', }, { title: '黑名单等级', - dataIndex: 'lv', + dataIndex: 'reserved5', render: (_: any, record: any) => { - return isEmpty(record.lv) || '1' ? '一级' : '二级'; + return (isEmpty(record.reserved5) || record.reserved5 == "1") ? '一级' : '二级'; } }, { title: '黑名单开始时间',