fix(credit): 修正信用违约和公司信息页面字段映射错误

- 修复信用违约页面中原告/上诉人与被告/被上诉人的字段映射颠倒问题
- 修正信用公司信息组件中当事人的字段配置错误
- 注释开发环境中的API URL配置以避免冲突
This commit is contained in:
2026-03-02 14:08:20 +08:00
parent 6a9be80811
commit ddb311b82f
3 changed files with 8 additions and 8 deletions

View File

@@ -153,13 +153,13 @@
},
{
title: '原告/上诉人',
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '被告/被上诉人',
dataIndex: 'appellee',
key: 'appellee'
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
},
{
title: '其他当事人/第三人',

View File

@@ -986,11 +986,11 @@
{ dataIndex: 'id', title: 'ID' },
{ dataIndex: 'companyName', title: '主体企业' },
{
dataIndex: 'plaintiffAppellant',
dataIndex: 'appellee',
title: '原告/上诉人',
key: 'plaintiffAppellant'
key: 'appellee'
},
{ dataIndex: 'appellee', title: '被告/被上诉人', key: 'appellee' },
{ dataIndex: 'plaintiffAppellant', title: '被告/被上诉人', key: 'plaintiffAppellant' },
{ dataIndex: 'otherPartiesThirdParty', title: '其他当事人/第三人' },
{ dataIndex: 'occurrenceTime', title: '发生时间' },
{ dataIndex: 'caseNumber', title: '案号' },