feat(credit): 更新信用判决债务人页面表格字段

- 新增原告/上诉人、被告/被上诉人、其他当事人/第三人字段
- 新增发生时间字段并调整宽度为120
- 将立案日期字段重命名为发生时间
- 将执行标的字段重命名为涉案金额
- 移除证件号/组织机构代码字段
- 调整表格列配置顺序和结构
This commit is contained in:
2026-02-06 16:54:19 +08:00
parent c16b857505
commit 8d1d9d9de9

View File

@@ -187,25 +187,36 @@
dataIndex: 'companyName',
key: 'companyName'
},
{
title: '原告/上诉人',
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
},
{
title: '被告/被上诉人',
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '其他当事人/第三人',
dataIndex: 'otherPartiesThirdParty',
key: 'otherPartiesThirdParty'
},
{
title: '发生时间',
dataIndex: 'occurrenceTime',
key: 'occurrenceTime',
width: 120
},
{
title: '案号',
dataIndex: 'caseNumber',
key: 'caseNumber'
},
{
title: '被执行人名称',
dataIndex: 'name',
key: 'name'
},
{
title: '证件号/组织机构代码',
dataIndex: 'code',
key: 'code'
},
{
title: '立案日期',
dataIndex: 'occurrenceTime',
key: 'occurrenceTime',
title: '涉案金额',
dataIndex: 'amount',
key: 'amount',
width: 120
},
{
@@ -213,12 +224,6 @@
dataIndex: 'courtName',
key: 'courtName'
},
{
title: '执行标的(元)',
dataIndex: 'amount',
key: 'amount',
width: 120
},
{
title: '数据状态',
dataIndex: 'dataStatus',
@@ -291,7 +296,6 @@
{ title: 'ID', dataIndex: 'id' },
{ title: '案号', dataIndex: 'caseNumber' },
{ title: '被执行人名称', dataIndex: 'name' },
{ title: '证件号/组织机构代码', dataIndex: 'code' },
{ title: '立案日期', dataIndex: 'occurrenceTime' },
{ title: '执行标的(元)', dataIndex: 'amount' },
{ title: '法院', dataIndex: 'courtName' },