feat(credit): 更新信用 judgment debtor 模型并添加排序功能

- 在 creditJudgmentDebtor 模型中添加原告/上诉人、被告/被上诉人、其他当事人/第三人字段
- 修复模型中 name 字段注释并添加 name1 备用字段
- 在 creditCompanyInfo 组件中调整字段映射,将 name1 移至正确位置
- 修复 freezeDateEnd 字段映射错误
- 为 creditCustomer、creditJudgmentDebtor 和 creditSupplier 页面的表格列添加排序功能
- 更新相关表格列配置以支持 sorter 属性
This commit is contained in:
2026-02-14 17:27:46 +08:00
parent 338a2b9d72
commit ff186910da
5 changed files with 21 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ export interface CreditJudgmentDebtor {
id?: number; id?: number;
// 案号 // 案号
caseNumber?: string; caseNumber?: string;
// 被执行人名称 //
name?: string; name?: string;
// 证件号/组织机构代码 // 证件号/组织机构代码
code?: string; code?: string;
@@ -44,6 +44,14 @@ export interface CreditJudgmentDebtor {
updateTime?: string; updateTime?: string;
// 历史ID // 历史ID
historyId?: number; historyId?: number;
// 原告/上诉人
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 被执行人名称
name1?: string;
} }
/** /**

View File

@@ -624,7 +624,6 @@
'deleted', 'deleted',
'tenantId', 'tenantId',
'userId', 'userId',
'name1',
'sortNumber', 'sortNumber',
'recommend', 'recommend',
'url', 'url',
@@ -872,6 +871,7 @@
'plaintiffAppellant', 'plaintiffAppellant',
'appellee', 'appellee',
'otherPartiesThirdParty', 'otherPartiesThirdParty',
'name1',
'occurrenceTime', 'occurrenceTime',
'caseNumber', 'caseNumber',
'amount', 'amount',
@@ -884,7 +884,7 @@
id: 'ID', id: 'ID',
companyName: '主体企业', companyName: '主体企业',
plaintiffAppellant: '原告/上诉人', plaintiffAppellant: '原告/上诉人',
appellee: '被告/被上诉人', appellee: '被告/被上诉人', // name1: '被执行人',
otherPartiesThirdParty: '其他当事人/第三人', otherPartiesThirdParty: '其他当事人/第三人',
occurrenceTime: '发生时间', occurrenceTime: '发生时间',
caseNumber: '案号', caseNumber: '案号',
@@ -1074,7 +1074,7 @@
{ dataIndex: 'involvedAmount', title: '被执行人持有股权、其他投资权益数额' }, { dataIndex: 'involvedAmount', title: '被执行人持有股权、其他投资权益数额' },
{ dataIndex: 'publicDate', title: '公示日期' }, { dataIndex: 'publicDate', title: '公示日期' },
{ dataIndex: 'freezeDateStart', title: '冻结开始日期' }, { dataIndex: 'freezeDateStart', title: '冻结开始日期' },
{ dataIndex: 'freezeDateStart', title: '冻结结束日期' }, { dataIndex: 'freezeDateEnd', title: '冻结结束日期' },
{ dataIndex: 'dataStatus', title: '数据状态' }, { dataIndex: 'dataStatus', title: '数据状态' },
{ dataIndex: 'realName', title: '操作人' }, { dataIndex: 'realName', title: '操作人' },
{ dataIndex: 'createTime', title: '创建时间' } { dataIndex: 'createTime', title: '创建时间' }

View File

@@ -164,6 +164,7 @@
dataIndex: 'price', dataIndex: 'price',
key: 'price', key: 'price',
width: 180, width: 180,
sorter: true,
align: 'center' align: 'center'
}, },
{ {

View File

@@ -173,17 +173,20 @@
{ {
title: '原告/上诉人', title: '原告/上诉人',
dataIndex: 'plaintiffAppellant', dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant' key: 'plaintiffAppellant',
sorter: true
}, },
{ {
title: '被告/被上诉人', title: '被告/被上诉人',
dataIndex: 'appellee', dataIndex: 'appellee',
key: 'appellee' key: 'appellee',
sorter: true
}, },
{ {
title: '其他当事人/第三人', title: '其他当事人/第三人',
dataIndex: 'otherPartiesThirdParty', dataIndex: 'otherPartiesThirdParty',
key: 'otherPartiesThirdParty' key: 'otherPartiesThirdParty',
sorter: true
}, },
{ {
title: '发生时间', title: '发生时间',

View File

@@ -155,7 +155,8 @@
{ {
title: '采购金额(万元)', title: '采购金额(万元)',
dataIndex: 'purchaseAmount', dataIndex: 'purchaseAmount',
key: 'purchaseAmount' key: 'purchaseAmount',
sorter: true
}, },
{ {
title: '公开日期', title: '公开日期',