refactor(credit): 优化企业信用模块数据结构和界面展示
- 将模型中的 companyName 字段统一重命名为 name - 更新编辑页面标题为更准确的描述 - 调整多个表格列的宽度配置 - 移除冗余的表格滚动设置 - 为主企业名称字段添加空值显示处理 - 统一表格列配置中的样式属性 - 优化表格列的数据索引和键值配置 - 移除过多的表格列宽度和省略号设置
This commit is contained in:
@@ -6,28 +6,28 @@ import type { PageParam } from '@/api';
|
||||
export interface CreditCourtSession {
|
||||
// ID
|
||||
id?: number;
|
||||
// 数据类型
|
||||
dataType?: string;
|
||||
// 原告/上诉人
|
||||
plaintiffAppellant?: string;
|
||||
// 被告/被上诉人
|
||||
appellee?: string;
|
||||
// 链接地址
|
||||
url?: string;
|
||||
// 其他当事人/第三人
|
||||
otherPartiesThirdParty?: string;
|
||||
// 发生时间
|
||||
occurrenceTime?: string;
|
||||
// 案号
|
||||
caseNumber?: string;
|
||||
// 案由
|
||||
causeOfAction?: string;
|
||||
// 涉案金额
|
||||
involvedAmount?: string;
|
||||
// 其他当事人/第三人
|
||||
otherPartiesThirdParty?: string;
|
||||
// 法院
|
||||
courtName?: string;
|
||||
// 发生时间
|
||||
occurrenceTime?: string;
|
||||
// 数据类型
|
||||
// dataType?: string;
|
||||
// 原告/上诉人
|
||||
// plaintiffAppellant?: string;
|
||||
// 被告/被上诉人
|
||||
// appellee?: string;
|
||||
// 链接地址
|
||||
url?: string;
|
||||
// 涉案金额
|
||||
// involvedAmount?: string;
|
||||
// 数据状态
|
||||
dataStatus?: string;
|
||||
// dataStatus?: string;
|
||||
// 备注
|
||||
comments?: string;
|
||||
// 是否推荐
|
||||
|
||||
Reference in New Issue
Block a user