소스 검색

fix: 修改应收款发票号字段

outaozhen 4 년 전
부모
커밋
71cfcebb3c
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/pages/Statistic/Product/InvoiceReceivables/index.jsx

+ 3 - 3
src/pages/Statistic/Product/InvoiceReceivables/index.jsx

@@ -156,11 +156,11 @@ const InvoiceReceivables = () => {
       )
       )
     },
     },
     {
     {
-      dataIndex: 'irid',
+      dataIndex: 'invoiceNo',
       title: '发票号',
       title: '发票号',
       align: 'center',
       align: 'center',
-      render: (irid, record) => (
-        <>{!record.isRed ? <span>{irid}</span> : <span className="text-red-500">{irid}</span>}</>
+      render: (invoiceNo, record) => (
+        <>{!record.isRed ? <span>{invoiceNo}</span> : <span className="text-red-500">{invoiceNo}</span>}</>
       )
       )
     },
     },
     {
     {