refactor(credit): 更新信用模块表格字段映射

- 将 plaintiffUser 字段统一重命名为 plaintiffAppellant
- 将被告字段从 plaintiffUser 更改为 appellee
- 在最终版本页面中修正 dataType 字段映射为正确的当事人字段
- 在股权冻结页面添加 appellee2 回退显示逻辑
- 修正信用修复页面的被告字段映射为 defendantUser
This commit is contained in:
2026-01-31 02:17:27 +08:00
parent c5908f4376
commit 2d7e44e0ad
9 changed files with 39 additions and 36 deletions

View File

@@ -163,13 +163,13 @@
},
{
title: '原告/上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
},
{
title: '被告/被上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '其他当事人/第三人',

View File

@@ -153,13 +153,13 @@
},
{
title: '原告/上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
},
{
title: '被告/被上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '其他当事人/第三人',

View File

@@ -169,13 +169,13 @@
},
{
title: '原告/上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
},
{
title: '被告/被上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '其他当事人/第三人',

View File

@@ -156,13 +156,13 @@
},
{
title: '原告/上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
},
{
title: '被告/被上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '其他当事人/第三人',

View File

@@ -152,13 +152,13 @@
},
{
title: '原告/上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
},
{
title: '被告/被上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '其他当事人/第三人',

View File

@@ -155,18 +155,18 @@
},
{
title: '原告/上诉人',
dataIndex: 'dataType',
key: 'dataType'
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
},
{
title: '被告/被上诉人',
dataIndex: 'dataType',
key: 'dataType'
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '其他当事人/第三人',
dataIndex: 'dataType',
key: 'dataType'
dataIndex: 'otherPartiesThirdParty',
key: 'otherPartiesThirdParty'
},
{
title: '发生时间',

View File

@@ -38,6 +38,9 @@
<template v-if="column.key === 'image'">
<a-image :src="record.image" :width="50" />
</template>
<template v-if="column.key === 'appellee'">
{{ record.appellee2 ? record.appellee2 : record.appellee }}
</template>
<template v-if="column.key === 'status'">
<a-tag v-if="record.status === 0" color="green">显示</a-tag>
<a-tag v-if="record.status === 1" color="red">隐藏</a-tag>
@@ -157,13 +160,13 @@
},
{
title: '冻结股权标的企业',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
},
{
title: '被执行人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '执行法院',

View File

@@ -144,13 +144,13 @@
},
{
title: '原告/上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'plaintiffAppellant',
key: 'plaintiffAppellant'
},
{
title: '被告/被上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'appellee',
key: 'appellee'
},
{
title: '其他当事人/第三人',

View File

@@ -156,8 +156,8 @@
},
{
title: '被告/被上诉人',
dataIndex: 'plaintiffUser',
key: 'plaintiffUser'
dataIndex: 'defendantUser',
key: 'defendantUser'
},
{
title: '其他当事人/第三人',