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

@@ -6,28 +6,17 @@ import type { PageParam } from '@/api';
export interface CreditFinalVersion {
// ID
id?: number;
// 数据类型
dataType?: string;
// 原告/上诉人
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间
occurrenceTime?: string;
// 案号
caseNumber?: string;
// 案由
causeOfAction?: string;
// 涉案金额
appellee?: string;
plaintiffAppellant?: string;
unfulfilledAmount?: string;
involvedAmount?: string;
// 法院
courtName?: string;
// 数据状态
dataStatus?: string;
occurrenceTime?: string;
finalDate?: string;
// 链接地址
url?: string;
// 备注
comments?: string;
// 是否推荐

View File

@@ -6,28 +6,34 @@ import type { PageParam } from '@/api';
export interface CreditGqdj {
// ID
id?: number;
// 数据类型
dataType?: string;
// 原告/上诉
plaintiffAppellant?: string;
// 被告/被上诉人
// 执行通知文书号
caseNumber?: string;
// 被执行
appellee?: string;
// 冻结股权标的企业
plaintiffAppellant?: string;
// 被执行人持有股权、其他投资权益数额
involvedAmount?: string;
// 执行法院
courtName?: string;
// 类型
dataType?: string;
// 状态
dataStatus?: string;
// 冻结日期自
freezeDateStart?: string;
// 冻结日期至
freezeDateEnd?: string;
// 公示日期
publicDate?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间
occurrenceTime?: string;
// 案号
caseNumber?: string;
// 案由
causeOfAction?: string;
// 涉案金额
involvedAmount?: string;
// 法院
courtName?: string;
// 数据状态
dataStatus?: string;
// 备注
comments?: string;
// 是否推荐