feat(credit): 更新信用模块表格列配置和字段映射
- 在信用违约、立案、法院公告、开庭公告、送达公告等页面新增当事人相关列 - 统一各信用模块表格中的原告/上诉人、被告/被上诉人、其他当事人/第三人字段 - 调整涉案金额、法院、数据状态等字段的显示标题 - 修改信用公司信息组件中的表格列配置逻辑 - 新增columns配置支持重复dataIndex的不同标题显示 - 更新招投标、对外投资、风险关系等多个子模块的字段顺序和映射 - 添加链接文本字段的自动渲染功能 - 优化表格
This commit is contained in:
@@ -153,6 +153,27 @@
|
||||
dataIndex: 'companyName',
|
||||
key: 'companyName'
|
||||
},
|
||||
{
|
||||
title: '原告/上诉人',
|
||||
dataIndex: 'dataType',
|
||||
key: 'dataType'
|
||||
},
|
||||
{
|
||||
title: '被告/被上诉人',
|
||||
dataIndex: 'dataType',
|
||||
key: 'dataType'
|
||||
},
|
||||
{
|
||||
title: '其他当事人/第三人',
|
||||
dataIndex: 'dataType',
|
||||
key: 'dataType'
|
||||
},
|
||||
{
|
||||
title: '发生时间',
|
||||
dataIndex: 'occurrenceTime',
|
||||
key: 'occurrenceTime',
|
||||
width: 120
|
||||
},
|
||||
{
|
||||
title: '案号',
|
||||
dataIndex: 'caseNumber',
|
||||
@@ -160,43 +181,53 @@
|
||||
width: 200
|
||||
},
|
||||
{
|
||||
title: '被执行人',
|
||||
dataIndex: 'appellee',
|
||||
key: 'appellee'
|
||||
},
|
||||
{
|
||||
title: '疑似申请执行人',
|
||||
dataIndex: 'plaintiffAppellant',
|
||||
key: 'plaintiffAppellant'
|
||||
},
|
||||
{
|
||||
title: '未履行金额(元)',
|
||||
dataIndex: 'unfulfilledAmount',
|
||||
key: 'unfulfilledAmount'
|
||||
},
|
||||
{
|
||||
title: '执行标的(元)',
|
||||
title: '涉案金额',
|
||||
dataIndex: 'involvedAmount',
|
||||
key: 'involvedAmount'
|
||||
},
|
||||
{
|
||||
title: '执行法院',
|
||||
title: '法院',
|
||||
dataIndex: 'courtName',
|
||||
key: 'courtName',
|
||||
width: 120
|
||||
},
|
||||
{
|
||||
title: '立案日期',
|
||||
dataIndex: 'occurrenceTime',
|
||||
key: 'occurrenceTime',
|
||||
width: 120
|
||||
},
|
||||
{
|
||||
title: '终本日期',
|
||||
dataIndex: 'finalDate',
|
||||
key: 'finalDate',
|
||||
width: 120
|
||||
title: '数据状态',
|
||||
dataIndex: 'dataStatus',
|
||||
key: 'dataStatus'
|
||||
},
|
||||
// {
|
||||
// title: '被执行人',
|
||||
// dataIndex: 'appellee',
|
||||
// key: 'appellee'
|
||||
// },
|
||||
// {
|
||||
// title: '疑似申请执行人',
|
||||
// dataIndex: 'plaintiffAppellant',
|
||||
// key: 'plaintiffAppellant'
|
||||
// },
|
||||
// {
|
||||
// title: '未履行金额(元)',
|
||||
// dataIndex: 'unfulfilledAmount',
|
||||
// key: 'unfulfilledAmount'
|
||||
// },
|
||||
// {
|
||||
// title: '执行标的(元)',
|
||||
// dataIndex: 'involvedAmount',
|
||||
// key: 'involvedAmount'
|
||||
// },
|
||||
// {
|
||||
// title: '执行法院',
|
||||
// dataIndex: 'courtName',
|
||||
// key: 'courtName',
|
||||
// width: 120
|
||||
// },
|
||||
// {
|
||||
// title: '终本日期',
|
||||
// dataIndex: 'finalDate',
|
||||
// key: 'finalDate',
|
||||
// width: 120
|
||||
// },
|
||||
{
|
||||
title: '操作人',
|
||||
dataIndex: 'realName',
|
||||
|
||||
Reference in New Issue
Block a user