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

@@ -56,9 +56,9 @@
</template>
</template>
<template v-if="column.key === 'dataStatus'">
<div :class="record.historyId ? 'text-red-500 font-bold' : ''">
<a-tag>
{{ record.dataStatus || (record.historyId ? '有效' : '') }}
</div>
</a-tag>
</template>
<template v-if="column.key === 'status'">
<a-tag v-if="record.status === 0" color="green">显示</a-tag>
@@ -189,32 +189,17 @@
{
title: '案号',
dataIndex: 'caseNumber',
key: 'caseNumber',
ellipsis: true
key: 'caseNumber'
},
{
title: '被执行人名称',
dataIndex: 'name',
key: 'name',
ellipsis: true
},
// {
// title: '证件号/组织机构代码',
// dataIndex: 'code',
// key: 'code',
// ellipsis: true
// },
{
title: '执行标的(元)',
dataIndex: 'amount',
key: 'amount',
width: 120
key: 'name'
},
{
title: '执行法院',
dataIndex: 'courtName',
key: 'courtName',
ellipsis: true
title: '证件号/组织机构代码',
dataIndex: 'code',
key: 'code'
},
{
title: '立案日期',
@@ -222,14 +207,24 @@
key: 'occurrenceTime',
width: 120
},
// {
// title: '状态',
// dataIndex: 'dataStatus',
// key: 'dataStatus',
// ellipsis: true,
// align: 'center',
// width: 90
// },
{
title: '法院',
dataIndex: 'courtName',
key: 'courtName'
},
{
title: '执行标的(元)',
dataIndex: 'amount',
key: 'amount',
width: 120
},
{
title: '数据状态',
dataIndex: 'dataStatus',
key: 'dataStatus',
align: 'center',
width: 90
},
{
title: '操作人',
dataIndex: 'realName',