feat(credit): 更新信用模块表格列配置和字段映射

- 在信用违约、立案、法院公告、开庭公告、送达公告等页面新增当事人相关列
- 统一各信用模块表格中的原告/上诉人、被告/被上诉人、其他当事人/第三人字段
- 调整涉案金额、法院、数据状态等字段的显示标题
- 修改信用公司信息组件中的表格列配置逻辑
- 新增columns配置支持重复dataIndex的不同标题显示
- 更新招投标、对外投资、风险关系等多个子模块的字段顺序和映射
- 添加链接文本字段的自动渲染功能
- 优化表格
This commit is contained in:
2026-01-28 16:16:18 +08:00
parent 6b21547b09
commit 17487cce2b
14 changed files with 891 additions and 383 deletions

View File

@@ -160,51 +160,61 @@
{
title: '文书标题',
dataIndex: 'title',
key: 'title',
width: 280
key: 'title'
},
{
title: '案号',
dataIndex: 'caseNumber',
key: 'caseNumber',
width: 240
},
{
title: '案由',
dataIndex: 'causeOfAction',
key: 'causeOfAction',
width: 240
title: '文书类型',
dataIndex: 'type',
key: 'type'
},
{
title: '当事人',
dataIndex: 'otherPartiesThirdParty',
key: 'otherPartiesThirdParty'
},
{
title: '案件金额(元)',
dataIndex: 'involvedAmount',
key: 'involvedAmount',
width: 120
},
{
title: '裁判结果',
dataIndex: 'defendantAppellee',
key: 'defendantAppellee',
width: 280
},
{
title: '裁判日期',
dataIndex: 'occurrenceTime',
key: 'occurrenceTime',
width: 120
key: 'occurrenceTime'
},
{
title: '发布日期',
dataIndex: 'releaseDate',
key: 'releaseDate',
ellipsis: true,
width: 120
title: '案号',
dataIndex: 'caseNumber',
key: 'caseNumber'
},
{
title: '案由',
dataIndex: 'causeOfAction',
key: 'causeOfAction'
},
{
title: '涉案金额',
dataIndex: 'involvedAmount',
key: 'involvedAmount'
},
{
title: '法院',
dataIndex: 'courtName',
key: 'courtName'
},
{
title: '数据状态',
dataIndex: 'dataStatus',
key: 'dataStatus'
},
// {
// title: '裁判结果',
// dataIndex: 'defendantAppellee',
// key: 'defendantAppellee',
// width: 280
// },
// {
// title: '发布日期',
// dataIndex: 'releaseDate',
// key: 'releaseDate',
// ellipsis: true,
// width: 120
// },
{
title: '操作人',
dataIndex: 'realName',