feat(credit): 更新信用判决债务人页面表格字段
- 新增原告/上诉人、被告/被上诉人、其他当事人/第三人字段 - 新增发生时间字段并调整宽度为120 - 将立案日期字段重命名为发生时间 - 将执行标的字段重命名为涉案金额 - 移除证件号/组织机构代码字段 - 调整表格列配置顺序和结构
This commit is contained in:
@@ -66,7 +66,7 @@
|
|||||||
<a-tag v-if="record.status === 1" color="red">隐藏</a-tag>
|
<a-tag v-if="record.status === 1" color="red">隐藏</a-tag>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="column.key === 'updateTime'">
|
<template v-if="column.key === 'updateTime'">
|
||||||
<div>{{ record.updateTime }}</div>
|
<div>{{ record.updateTime }}</div>
|
||||||
</template>
|
</template>
|
||||||
<template v-if="column.key === 'action'">
|
<template v-if="column.key === 'action'">
|
||||||
<a-space>
|
<a-space>
|
||||||
@@ -187,25 +187,36 @@
|
|||||||
dataIndex: 'companyName',
|
dataIndex: 'companyName',
|
||||||
key: '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: '案号',
|
title: '案号',
|
||||||
dataIndex: 'caseNumber',
|
dataIndex: 'caseNumber',
|
||||||
key: 'caseNumber'
|
key: 'caseNumber'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '被执行人名称',
|
title: '涉案金额',
|
||||||
dataIndex: 'name',
|
dataIndex: 'amount',
|
||||||
key: 'name'
|
key: 'amount',
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '证件号/组织机构代码',
|
|
||||||
dataIndex: 'code',
|
|
||||||
key: 'code'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '立案日期',
|
|
||||||
dataIndex: 'occurrenceTime',
|
|
||||||
key: 'occurrenceTime',
|
|
||||||
width: 120
|
width: 120
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -213,12 +224,6 @@
|
|||||||
dataIndex: 'courtName',
|
dataIndex: 'courtName',
|
||||||
key: 'courtName'
|
key: 'courtName'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: '执行标的(元)',
|
|
||||||
dataIndex: 'amount',
|
|
||||||
key: 'amount',
|
|
||||||
width: 120
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: '数据状态',
|
title: '数据状态',
|
||||||
dataIndex: 'dataStatus',
|
dataIndex: 'dataStatus',
|
||||||
@@ -291,7 +296,6 @@
|
|||||||
{ title: 'ID', dataIndex: 'id' },
|
{ title: 'ID', dataIndex: 'id' },
|
||||||
{ title: '案号', dataIndex: 'caseNumber' },
|
{ title: '案号', dataIndex: 'caseNumber' },
|
||||||
{ title: '被执行人名称', dataIndex: 'name' },
|
{ title: '被执行人名称', dataIndex: 'name' },
|
||||||
{ title: '证件号/组织机构代码', dataIndex: 'code' },
|
|
||||||
{ title: '立案日期', dataIndex: 'occurrenceTime' },
|
{ title: '立案日期', dataIndex: 'occurrenceTime' },
|
||||||
{ title: '执行标的(元)', dataIndex: 'amount' },
|
{ title: '执行标的(元)', dataIndex: 'amount' },
|
||||||
{ title: '法院', dataIndex: 'courtName' },
|
{ title: '法院', dataIndex: 'courtName' },
|
||||||
|
|||||||
Reference in New Issue
Block a user