refactor(credit): 调整信用模块数据结构和界面展示

- 修改CreditFinalVersion和CreditGqdj接口字段定义,调整字段顺序和内容
- 移除搜索工具栏中的添加按钮,暂时禁用该功能
- 更新行政许可编辑弹窗样式,设置宽度为70%并移除底部操作按钮
- 移除行政许可编辑表单中的多个冗余字段,精简表单内容
- 为信用相关表格组件添加选择功能和横向滚动支持
- 调整多个信用模块表格列配置,移除省略号显示,优化列标题
- 隐藏表格操作列,暂时禁用行操作功能
- 更新企业信息表格字段配置,增加更多企业相关信息列
- 调整企业表格显示逻辑,将名称替换为匹配名称进行展示
- 为多个信用模块表格添加复选框选择功能
- 移除部分表格中的备注字段,简化数据显示
- 注释掉行双击编辑事件,暂停双击编辑功能
This commit is contained in:
2026-01-19 14:21:24 +08:00
parent 463636578d
commit 1031ed9199
23 changed files with 695 additions and 705 deletions

View File

@@ -7,6 +7,7 @@
:columns="columns"
:datasource="datasource"
:customRow="customRow"
v-model:selection="selection"
tool-class="ele-toolbar-form"
class="sys-org-table"
>
@@ -132,53 +133,49 @@
width: 90
},
{
title: '数据类型',
dataIndex: 'dataType',
key: 'dataType',
ellipsis: true
title: '案号',
dataIndex: 'caseNumber',
key: 'caseNumber',
width: 200
},
{
title: '原告/上诉人',
title: '被执行人',
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '疑似申请执行人',
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant',
ellipsis: true
key: 'plaintiffAppellant'
},
{
title: '发生时间',
title: '未履行金额(元)',
dataIndex: 'unfulfilledAmount',
key: 'unfulfilledAmount'
},
{
title: '执行标的(元)',
dataIndex: 'involvedAmount',
key: 'involvedAmount'
},
{
title: '执行法院',
dataIndex: 'courtName',
key: 'courtName',
width: 120
},
{
title: '立案日期',
dataIndex: 'occurrenceTime',
key: 'occurrenceTime',
width: 120
},
{
title: '案号',
dataIndex: 'caseNumber',
key: 'caseNumber',
ellipsis: true
},
{
title: '案由',
dataIndex: 'causeOfAction',
key: 'causeOfAction',
ellipsis: true
},
{
title: '涉案金额',
dataIndex: 'involvedAmount',
key: 'involvedAmount',
title: '终本日期',
dataIndex: 'finalDate',
key: 'finalDate',
width: 120
},
{
title: '法院',
dataIndex: 'courtName',
key: 'courtName',
ellipsis: true
},
{
title: '数据状态',
dataIndex: 'dataStatus',
key: 'dataStatus',
ellipsis: true
},
{
title: '创建时间',
dataIndex: 'createTime',
@@ -188,14 +185,14 @@
ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
},
{
title: '操作',
key: 'action',
width: 160,
fixed: 'right',
align: 'center',
hideInSetting: true
}
// {
// title: '操作',
// key: 'action',
// width: 160,
// fixed: 'right',
// align: 'center',
// hideInSetting: true
// }
]);
/* 搜索 */
@@ -230,14 +227,14 @@
filename: '终本案件',
columns: [
{ title: 'ID', dataIndex: 'id' },
{ title: '数据类型', dataIndex: 'dataType' },
{ title: '原告/上诉人', dataIndex: 'plaintiffAppellant' },
{ title: '发生时间', dataIndex: 'occurrenceTime' },
{ title: '案号', dataIndex: 'caseNumber' },
{ title: '案由', dataIndex: 'causeOfAction' },
{ title: '涉案金额', dataIndex: 'involvedAmount' },
{ title: '法院', dataIndex: 'courtName' },
{ title: '数据状态', dataIndex: 'dataStatus' },
{ title: '被执行人', dataIndex: 'appellee' },
{ title: '疑似申请执行人', dataIndex: 'plaintiffAppellant' },
{ title: '未履行金额(元)', dataIndex: 'unfulfilledAmount' },
{ title: '执行标的(元)', dataIndex: 'involvedAmount' },
{ title: '执行法院', dataIndex: 'courtName' },
{ title: '立案日期', dataIndex: 'occurrenceTime' },
{ title: '终本日期', dataIndex: 'finalDate' },
{
title: '创建时间',
dataIndex: 'createTime',
@@ -310,7 +307,7 @@
},
// 行双击事件
onDblclick: () => {
openEdit(record);
// openEdit(record);
}
};
};