refactor(供应商管理): 统一使用unifiedCode替换socialCreditCode字段

移除供应商模型中的socialCreditCode字段,并在表格组件中将数据索引改为unifiedCode,保持代码一致性
This commit is contained in:
linxd
2025-07-21 15:55:31 +08:00
parent b6f76ea54f
commit ec76a7a693
4 changed files with 4 additions and 6 deletions

View File

@ -72,8 +72,8 @@ const SupplierTable: React.FC<SupplierTableProps> = ({
},
{
title: <FormattedMessage id="supplierAnnualTaskManage.supplierTable.socialCreditCode" />,
dataIndex: 'socialCreditCode',
key: 'socialCreditCode',
dataIndex: 'unifiedCode',
key: 'unifiedCode',
ellipsis: true,
},
{

View File

@ -63,8 +63,8 @@ const SupplierTable: React.FC<SupplierTableProps> = ({
},
{
title: intl.formatMessage({ id: 'supplierTaskManage.column.socialCreditCode' }),
dataIndex: 'socialCreditCode',
key: 'socialCreditCode',
dataIndex: 'unifiedCode',
key: 'unifiedCode',
ellipsis: true,
},
{