feat(credit): 更新信用模块表格字段配置

- 在信用公司信息组件中为对外投资和案件相关表格添加创建时间字段
- 调整被执行人表格的列顺序并重命名相关字段如原告/上诉人、被告/被上诉人等
- 修改涉案金额字段名为involvedAmount并在判决债务人页面添加创建时间列
- 重新排列信用用户页面中标的金额和操作人列的顺序
- 更新限制高消费页面的涉案金额和法院标题文案
This commit is contained in:
2026-02-14 09:55:21 +08:00
parent 952a082752
commit 36806bac58
5 changed files with 43 additions and 28 deletions

View File

@@ -666,8 +666,9 @@
'address',
'procurementName',
'winningName',
'winningPrice',
'realName',
'winningPrice'
'createTime'
],
titleMap: {
id: 'ID',
@@ -680,7 +681,8 @@
winningName: '中标单位',
winningPrice: '中标金额',
releaseDate: '发布日期',
realName: '操作人'
realName: '操作人',
createTime: '创建时间'
}
},
'对外投资': {
@@ -835,7 +837,8 @@
'caseIdentity',
'court',
'caseAmount',
'realName'
'realName',
'createTime'
],
titleMap: {
id: 'ID',
@@ -849,7 +852,8 @@
caseIdentity: '案件身份',
court: '法院',
caseAmount: '案件金额(元)',
realName: '操作人'
realName: '操作人',
createTime: '创建时间'
},
hidden: [
'parentId',
@@ -859,38 +863,38 @@
'city',
'region',
'address',
'expirationTime',
'createTime'
'expirationTime'
]
},
'被执行人': {
order: [
'id',
'companyName',
'caseNumber',
'name',
'code',
'plaintiffAppellant',
'appellee',
'otherPartiesThirdParty',
'occurrenceTime',
'courtName',
'caseNumber',
'amount',
'courtName',
'dataStatus',
'realName',
'updateTime'
'createTime'
],
titleMap: {
id: 'ID',
companyName: '主体企业',
plaintiffAppellant: '原告/上诉人',
appellee: '被告/被上诉人',
otherPartiesThirdParty: '其他当事人/第三人',
occurrenceTime: '发生时间',
caseNumber: '案号',
name: '被执行人名称',
code: '证件号/组织机构代码',
amount: '执行标的(元)',
amount: '涉案金额',
courtName: '法院',
occurrenceTime: '立案日期',
dataStatus: '数据状态',
realName: '操作人',
updateTime: '更新时间'
createTime: '创建时间'
},
hidden: ['historyId', 'historyName', 'createTime']
hidden: ['historyId', 'historyName']
},
'限制高消费': {
columns: [

View File

@@ -198,8 +198,8 @@
},
{
title: '涉案金额',
dataIndex: 'amount',
key: 'amount',
dataIndex: 'involvedAmount',
key: 'involvedAmount',
width: 120
},
{

View File

@@ -82,6 +82,7 @@
ColumnItem
} from 'ele-admin-pro/es/ele-pro-table/types';
import Search from './components/search.vue';
import { toDateString } from 'ele-admin-pro';
import RefreshCompanyIdButton from '@/views/credit/components/RefreshCompanyIdButton.vue';
import { getPageTitle } from '@/utils/common';
import CreditJudiciaryEdit from './components/creditJudiciaryEdit.vue';
@@ -206,7 +207,17 @@
key: 'realName',
width: 90,
align: 'center'
}
},
{
title: '创建时间',
dataIndex: 'createTime',
key: 'createTime',
width: 200,
align: 'center',
sorter: true,
ellipsis: true,
customRender: ({ text }) => toDateString(text, 'yyyy-MM-dd HH:mm:ss')
},
// {
// title: '操作',
// key: 'action',

View File

@@ -211,6 +211,11 @@
dataIndex: 'winningName',
key: 'winningName'
},
{
title: '中标金额',
dataIndex: 'winningPrice',
key: 'winningPrice'
},
{
title: '操作人',
dataIndex: 'realName',
@@ -218,11 +223,6 @@
width: 90,
align: 'center'
},
{
title: '中标金额',
dataIndex: 'winningPrice',
key: 'winningPrice'
},
// {
// title: '排序',
// dataIndex: 'sortNumber',

View File

@@ -165,12 +165,12 @@
key: 'caseNumber'
},
{
title: '涉案金额(元)',
title: '涉案金额',
dataIndex: 'involvedAmount',
key: 'involvedAmount'
},
{
title: '执行法院',
title: '法院',
dataIndex: 'courtName',
key: 'courtName'
},