feat(credit): 添加链接地址字段支持

- 在多个信用模型中添加 url 字段定义,包括信用违约、立案、公司、竞争对手等
- 修复法院公告模型中的字段命名错误,将 defendant appellee 改为 appellee
- 在前端页面中实现链接地址的展示功能,为名称字段添加外链支持
- 优化页面布局结构,调整部分组件的缩进格式
- 修复时间格式化函数的换行问题,提升代码可读性
- 统一表格列宽度设置,优化页面显示效果
This commit is contained in:
2026-01-03 22:36:45 +08:00
parent 4f9a0e7f91
commit 90aaeef018
39 changed files with 762 additions and 625 deletions

View File

@@ -12,6 +12,8 @@ export interface CreditBreachOfTrust {
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间

View File

@@ -12,6 +12,8 @@ export interface CreditCaseFiling {
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间

View File

@@ -12,6 +12,8 @@ export interface CreditCompany {
matchName?: string;
// 统一社会信用代码
code?: string;
// 链接地址
url?: string;
// 类型
type?: number;
// 上级id, 0是顶级

View File

@@ -20,6 +20,8 @@ export interface CreditCompetitor {
industry?: string;
// 所属省份
province?: string;
// 链接地址
url?: string;
// 备注
comments?: string;
// 是否推荐

View File

@@ -10,9 +10,10 @@ export interface CreditCourtAnnouncement {
dataType?: string;
// 原告/上诉人
plaintiffAppellant?: string;
@TableField("defendant Appellee")
// 被告/被上诉人
defendant appellee?: string;
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间

View File

@@ -12,6 +12,8 @@ export interface CreditCourtSession {
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间

View File

@@ -16,6 +16,8 @@ export interface CreditCustomer {
publicDate?: string;
// 数据来源
dataSource?: string;
// 链接地址
url?: string;
// 备注
comments?: string;
// 是否推荐

View File

@@ -26,6 +26,8 @@ export interface CreditDeliveryNotice {
courtName?: string;
// 数据状态
dataStatus?: string;
// 链接地址
url?: string;
// 备注
comments?: string;
// 是否推荐

View File

@@ -34,6 +34,8 @@ export interface CreditExternal {
investmentCount?: number;
// 关联产品/机构
relatedProductsInstitutions?: string;
// 链接地址
url?: string;
// 备注
comments?: string;
// 是否推荐

View File

@@ -12,6 +12,8 @@ export interface CreditFinalVersion {
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间

View File

@@ -12,6 +12,8 @@ export interface CreditGqdj {
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间

View File

@@ -12,6 +12,8 @@ export interface CreditJudgmentDebtor {
name?: string;
// 证件号/组织机构代码
code?: string;
// 链接地址
url?: string;
// 立案日期
occurrenceTime?: string;
// 执行标的(元)

View File

@@ -12,6 +12,8 @@ export interface CreditJudicialDocument {
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间

View File

@@ -10,6 +10,8 @@ export interface CreditJudiciary {
name?: string;
// 案号
code?: string;
// 链接地址
url?: string;
// 类型, 0普通用户, 1招投标
type?: number;
// 案由

View File

@@ -12,6 +12,8 @@ export interface CreditMediation {
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间

View File

@@ -10,6 +10,8 @@ export interface CreditProject {
name?: string;
// 唯一标识
code?: string;
// 链接地址
url?: string;
// 类型, 0普通用户, 1招投标
type?: number;
// 企业角色

View File

@@ -18,6 +18,8 @@ export interface CreditRiskRelation {
associatedRelation?: string;
// 风险关系
riskRelation?: string;
// 链接地址
url?: string;
// 备注
comments?: string;
// 是否推荐

View File

@@ -16,6 +16,8 @@ export interface CreditSupplier {
publicDate?: string;
// 数据来源
dataSource?: string;
// 链接地址
url?: string;
// 备注
comments?: string;
// 是否推荐

View File

@@ -10,6 +10,8 @@ export interface CreditUser {
name?: string;
// 唯一标识
code?: string;
// 链接地址
url?: string;
// 类型, 0普通用户, 1招投标
type?: number;
// 企业角色

View File

@@ -12,6 +12,8 @@ export interface CreditXgxf {
plaintiffAppellant?: string;
// 被告/被上诉人
appellee?: string;
// 链接地址
url?: string;
// 其他当事人/第三人
otherPartiesThirdParty?: string;
// 发生时间