fix(credit): 修正信用违约和公司信息页面字段映射错误
- 修复信用违约页面中原告/上诉人与被告/被上诉人的字段映射颠倒问题 - 修正信用公司信息组件中当事人的字段配置错误 - 注释开发环境中的API URL配置以避免冲突
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
VITE_APP_NAME=后台管理(开发环境)
|
VITE_APP_NAME=后台管理(开发环境)
|
||||||
VITE_API_URL=http://127.0.0.1:9200/api
|
#VITE_API_URL=http://127.0.0.1:9200/api
|
||||||
#VITE_SERVER_API_URL=http://127.0.0.1:8000/api
|
#VITE_SERVER_API_URL=http://127.0.0.1:8000/api
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -153,13 +153,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '原告/上诉人',
|
title: '原告/上诉人',
|
||||||
dataIndex: 'plaintiffAppellant',
|
dataIndex: 'appellee',
|
||||||
key: 'plaintiffAppellant'
|
key: 'appellee'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '被告/被上诉人',
|
title: '被告/被上诉人',
|
||||||
dataIndex: 'appellee',
|
dataIndex: 'plaintiffAppellant',
|
||||||
key: 'appellee'
|
key: 'plaintiffAppellant'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '其他当事人/第三人',
|
title: '其他当事人/第三人',
|
||||||
|
|||||||
@@ -986,11 +986,11 @@
|
|||||||
{ dataIndex: 'id', title: 'ID' },
|
{ dataIndex: 'id', title: 'ID' },
|
||||||
{ dataIndex: 'companyName', title: '主体企业' },
|
{ dataIndex: 'companyName', title: '主体企业' },
|
||||||
{
|
{
|
||||||
dataIndex: 'plaintiffAppellant',
|
dataIndex: 'appellee',
|
||||||
title: '原告/上诉人',
|
title: '原告/上诉人',
|
||||||
key: 'plaintiffAppellant'
|
key: 'appellee'
|
||||||
},
|
},
|
||||||
{ dataIndex: 'appellee', title: '被告/被上诉人', key: 'appellee' },
|
{ dataIndex: 'plaintiffAppellant', title: '被告/被上诉人', key: 'plaintiffAppellant' },
|
||||||
{ dataIndex: 'otherPartiesThirdParty', title: '其他当事人/第三人' },
|
{ dataIndex: 'otherPartiesThirdParty', title: '其他当事人/第三人' },
|
||||||
{ dataIndex: 'occurrenceTime', title: '发生时间' },
|
{ dataIndex: 'occurrenceTime', title: '发生时间' },
|
||||||
{ dataIndex: 'caseNumber', title: '案号' },
|
{ dataIndex: 'caseNumber', title: '案号' },
|
||||||
|
|||||||
Reference in New Issue
Block a user