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

@@ -1,12 +1,12 @@
<!-- 搜索表单 -->
<template>
<a-space :size="10" style="flex-wrap: wrap">
<a-button type="primary" class="ele-btn-icon" @click="add">
<template #icon>
<PlusOutlined />
</template>
<span>添加</span>
</a-button>
<!-- <a-button type="primary" class="ele-btn-icon" @click="add">-->
<!-- <template #icon>-->
<!-- <PlusOutlined />-->
<!-- </template>-->
<!-- <span>添加</span>-->
<!-- </a-button>-->
<a-button class="ele-btn-icon" @click="openImport">
<template #icon>
<CloudUploadOutlined />

View File

@@ -8,6 +8,7 @@
:columns="columns"
:datasource="datasource"
:customRow="customRow"
:scroll="{ x: 2400 }"
tool-class="ele-toolbar-form"
class="sys-org-table"
>
@@ -141,162 +142,49 @@
{
title: '案件名称',
dataIndex: 'name',
key: 'name',
ellipsis: true
key: 'name'
},
{
title: '案件类型',
dataIndex: 'infoType',
key: 'infoType',
ellipsis: true
key: 'infoType'
},
{
title: '案由',
dataIndex: 'reason',
key: 'reason',
ellipsis: true
key: 'reason'
},
{
title: '进程日期',
dataIndex: 'processDate',
key: 'processDate',
ellipsis: true
key: 'processDate'
},
{
title: '案件进程',
dataIndex: 'caseProgress',
key: 'caseProgress',
ellipsis: true
key: 'caseProgress'
},
{
title: '案件身份',
dataIndex: 'caseIdentity',
key: 'caseIdentity',
ellipsis: true
key: 'caseIdentity'
},
{
title: '案号',
dataIndex: 'code',
key: 'code',
ellipsis: true
key: 'code'
},
{
title: '法院',
dataIndex: 'court',
key: 'court',
ellipsis: true
key: 'court'
},
{
title: '案件金额(元)',
dataIndex: 'caseAmount',
key: 'caseAmount',
ellipsis: true
key: 'caseAmount'
}
// {
// title: '类型, 0普通用户, 1招投标',
// dataIndex: 'type',
// key: 'type',
// width: 120
// },
// {
// title: '上级id, 0是顶级',
// dataIndex: 'parentId',
// key: 'parentId',
// width: 120
// },
// {
// title: '所在国家',
// dataIndex: 'country',
// key: 'country',
// ellipsis: true
// },
// {
// title: '所在省份',
// dataIndex: 'province',
// key: 'province',
// ellipsis: true
// },
// {
// title: '所在城市',
// dataIndex: 'city',
// key: 'city',
// ellipsis: true
// },
// {
// title: '所在辖区',
// dataIndex: 'region',
// key: 'region',
// ellipsis: true
// },
// {
// title: '街道地址',
// dataIndex: 'address',
// key: 'address',
// ellipsis: true
// },
// {
// title: '备注',
// dataIndex: 'comments',
// key: 'comments',
// ellipsis: true
// },
// {
// title: '是否推荐',
// dataIndex: 'recommend',
// key: 'recommend',
// width: 120
// },
// {
// title: '到期时间',
// dataIndex: 'expirationTime',
// key: 'expirationTime',
// width: 120
// },
// {
// title: '排序(数字越小越靠前)',
// dataIndex: 'sortNumber',
// key: 'sortNumber',
// width: 120
// },
// {
// title: '状态, 0正常, 1冻结',
// dataIndex: 'status',
// key: 'status',
// width: 120
// },
// {
// title: '是否删除, 0否, 1是',
// dataIndex: 'deleted',
// key: 'deleted',
// width: 120
// },
// {
// title: '用户ID',
// dataIndex: 'userId',
// key: 'userId',
// width: 120
// },
// {
// title: '创建时间',
// dataIndex: 'createTime',
// key: 'createTime',
// width: 200,
// align: 'center',
// sorter: true,
// ellipsis: true,
// customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
// },
// {
// title: '修改时间',
// dataIndex: 'updateTime',
// key: 'updateTime',
// width: 200,
// align: 'center',
// sorter: true,
// ellipsis: true,
// customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
// },
// {
// title: '操作',
// key: 'action',
// width: 180,
@@ -406,7 +294,7 @@
},
// 行双击事件
onDblclick: () => {
openEdit(record);
// openEdit(record);
}
};
};