feat(credit): 更新裁判文书模块的数据结构和界面展示
- 在CreditJudicialDocument接口中新增title和releaseDate字段 - 修改裁判文书列表页面的表格列配置,更新显示字段 - 新增发布日期和修改时间的显示列 - 将部分字段名称进行调整以更好地匹配业务需求 - 解除开发环境API地址的注释以启用本地服务调用
This commit is contained in:
@@ -6,6 +6,8 @@ import type { PageParam } from '@/api';
|
||||
export interface CreditJudicialDocument {
|
||||
// ID
|
||||
id?: number;
|
||||
// 文书标题
|
||||
title?: string;
|
||||
// 数据类型
|
||||
dataType?: string;
|
||||
// 原告/上诉人
|
||||
@@ -18,6 +20,8 @@ export interface CreditJudicialDocument {
|
||||
otherPartiesThirdParty?: string;
|
||||
// 发生时间
|
||||
occurrenceTime?: string;
|
||||
// 发布日期
|
||||
releaseDate?: string;
|
||||
// 案号
|
||||
caseNumber?: string;
|
||||
// 案由
|
||||
|
||||
Reference in New Issue
Block a user