From ddb311b82f60e434b6fd2521618b6ae3a89cb260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Mon, 2 Mar 2026 14:08:20 +0800 Subject: [PATCH] =?UTF-8?q?fix(credit):=20=E4=BF=AE=E6=AD=A3=E4=BF=A1?= =?UTF-8?q?=E7=94=A8=E8=BF=9D=E7=BA=A6=E5=92=8C=E5=85=AC=E5=8F=B8=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E9=A1=B5=E9=9D=A2=E5=AD=97=E6=AE=B5=E6=98=A0=E5=B0=84?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修复信用违约页面中原告/上诉人与被告/被上诉人的字段映射颠倒问题 - 修正信用公司信息组件中当事人的字段配置错误 - 注释开发环境中的API URL配置以避免冲突 --- .env.development | 2 +- src/views/credit/creditBreachOfTrust/index.vue | 8 ++++---- .../credit/creditCompany/components/creditCompanyInfo.vue | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.env.development b/.env.development index 4406098..3de4baf 100644 --- a/.env.development +++ b/.env.development @@ -1,5 +1,5 @@ VITE_APP_NAME=后台管理(开发环境) -VITE_API_URL=http://127.0.0.1:9200/api +#VITE_API_URL=http://127.0.0.1:9200/api #VITE_SERVER_API_URL=http://127.0.0.1:8000/api diff --git a/src/views/credit/creditBreachOfTrust/index.vue b/src/views/credit/creditBreachOfTrust/index.vue index 3aed531..3fea6ce 100644 --- a/src/views/credit/creditBreachOfTrust/index.vue +++ b/src/views/credit/creditBreachOfTrust/index.vue @@ -153,13 +153,13 @@ }, { title: '原告/上诉人', - dataIndex: 'plaintiffAppellant', - key: 'plaintiffAppellant' + dataIndex: 'appellee', + key: 'appellee' }, { title: '被告/被上诉人', - dataIndex: 'appellee', - key: 'appellee' + dataIndex: 'plaintiffAppellant', + key: 'plaintiffAppellant' }, { title: '其他当事人/第三人', diff --git a/src/views/credit/creditCompany/components/creditCompanyInfo.vue b/src/views/credit/creditCompany/components/creditCompanyInfo.vue index db288a8..ed37bf0 100644 --- a/src/views/credit/creditCompany/components/creditCompanyInfo.vue +++ b/src/views/credit/creditCompany/components/creditCompanyInfo.vue @@ -986,11 +986,11 @@ { dataIndex: 'id', title: 'ID' }, { dataIndex: 'companyName', title: '主体企业' }, { - dataIndex: 'plaintiffAppellant', + dataIndex: 'appellee', title: '原告/上诉人', - key: 'plaintiffAppellant' + key: 'appellee' }, - { dataIndex: 'appellee', title: '被告/被上诉人', key: 'appellee' }, + { dataIndex: 'plaintiffAppellant', title: '被告/被上诉人', key: 'plaintiffAppellant' }, { dataIndex: 'otherPartiesThirdParty', title: '其他当事人/第三人' }, { dataIndex: 'occurrenceTime', title: '发生时间' }, { dataIndex: 'caseNumber', title: '案号' },