From 8d1d9d9de97dcf8fbab1645a2e63033aeb0e85d5 Mon Sep 17 00:00:00 2001
From: gxwebsoft <170083662@qq.com>
Date: Fri, 6 Feb 2026 16:54:19 +0800
Subject: [PATCH] =?UTF-8?q?feat(credit):=20=E6=9B=B4=E6=96=B0=E4=BF=A1?=
=?UTF-8?q?=E7=94=A8=E5=88=A4=E5=86=B3=E5=80=BA=E5=8A=A1=E4=BA=BA=E9=A1=B5?=
=?UTF-8?q?=E9=9D=A2=E8=A1=A8=E6=A0=BC=E5=AD=97=E6=AE=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 新增原告/上诉人、被告/被上诉人、其他当事人/第三人字段
- 新增发生时间字段并调整宽度为120
- 将立案日期字段重命名为发生时间
- 将执行标的字段重命名为涉案金额
- 移除证件号/组织机构代码字段
- 调整表格列配置顺序和结构
---
.../credit/creditJudgmentDebtor/index.vue | 46 ++++++++++---------
1 file changed, 25 insertions(+), 21 deletions(-)
diff --git a/src/views/credit/creditJudgmentDebtor/index.vue b/src/views/credit/creditJudgmentDebtor/index.vue
index 9db1a13..6c73573 100644
--- a/src/views/credit/creditJudgmentDebtor/index.vue
+++ b/src/views/credit/creditJudgmentDebtor/index.vue
@@ -66,7 +66,7 @@
隐藏
- {{ record.updateTime }}
+ {{ record.updateTime }}
@@ -187,25 +187,36 @@
dataIndex: 'companyName',
key: 'companyName'
},
+ {
+ title: '原告/上诉人',
+ dataIndex: 'plaintiffAppellant',
+ key: 'plaintiffAppellant'
+ },
+ {
+ title: '被告/被上诉人',
+ dataIndex: 'appellee',
+ key: 'appellee'
+ },
+ {
+ title: '其他当事人/第三人',
+ dataIndex: 'otherPartiesThirdParty',
+ key: 'otherPartiesThirdParty'
+ },
+ {
+ title: '发生时间',
+ dataIndex: 'occurrenceTime',
+ key: 'occurrenceTime',
+ width: 120
+ },
{
title: '案号',
dataIndex: 'caseNumber',
key: 'caseNumber'
},
{
- title: '被执行人名称',
- dataIndex: 'name',
- key: 'name'
- },
- {
- title: '证件号/组织机构代码',
- dataIndex: 'code',
- key: 'code'
- },
- {
- title: '立案日期',
- dataIndex: 'occurrenceTime',
- key: 'occurrenceTime',
+ title: '涉案金额',
+ dataIndex: 'amount',
+ key: 'amount',
width: 120
},
{
@@ -213,12 +224,6 @@
dataIndex: 'courtName',
key: 'courtName'
},
- {
- title: '执行标的(元)',
- dataIndex: 'amount',
- key: 'amount',
- width: 120
- },
{
title: '数据状态',
dataIndex: 'dataStatus',
@@ -291,7 +296,6 @@
{ title: 'ID', dataIndex: 'id' },
{ title: '案号', dataIndex: 'caseNumber' },
{ title: '被执行人名称', dataIndex: 'name' },
- { title: '证件号/组织机构代码', dataIndex: 'code' },
{ title: '立案日期', dataIndex: 'occurrenceTime' },
{ title: '执行标的(元)', dataIndex: 'amount' },
{ title: '法院', dataIndex: 'courtName' },