From edac46da8c6a6ccf7ff7b65f8d90ab84e7490c48 Mon Sep 17 00:00:00 2001 From: zhouxy Date: Mon, 8 Jun 2026 17:30:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=A1=E7=94=A8=E6=A1=A3=E6=A1=88=E6=B3=95?= =?UTF-8?q?=E4=BA=BA=E8=8A=82=E7=82=B9=E6=96=B0=E5=A2=9E=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E4=BC=81=E4=B8=9A=E4=BF=A1=E6=81=AF=EF=BC=9B=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E7=BB=8F=E8=90=A5=E5=BC=82=E5=B8=B8=E3=80=81=E4=B8=A5=E9=87=8D?= =?UTF-8?q?=E8=BF=9D=E6=B3=95=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/comprehensive.js | 15 + .../components/CreditArchive.vue | 311 +++++++++++++++--- 2 files changed, 285 insertions(+), 41 deletions(-) diff --git a/src/api/comprehensive.js b/src/api/comprehensive.js index e4c5d7c..166bcb9 100644 --- a/src/api/comprehensive.js +++ b/src/api/comprehensive.js @@ -231,6 +231,21 @@ export function getCreditArchive(params) { }) } +/** + * 根据人员姓名/证件号查询其担任的相关企业(信用档案图谱三级节点扩展) + * @param {Object} params + * @param {string} params.name 姓名(必填) + * @param {string} [params.cerno] 证件号(可选,精确匹配) + * @param {string} [params.excludePripid] 排除的主体pripid(可选) + */ +export function getPersonRelatedEnts(params) { + return request({ + url: '/eBaseinfo/getPersonRelatedEnts', + method: 'get', + params + }) +} + /** * 信用修复预警统计 * @param data diff --git a/src/views/comprehensive/components/CreditArchive.vue b/src/views/comprehensive/components/CreditArchive.vue index 88d621f..bd8cf46 100644 --- a/src/views/comprehensive/components/CreditArchive.vue +++ b/src/views/comprehensive/components/CreditArchive.vue @@ -8,7 +8,7 @@ style="margin-left: 12px;" @click="resetGraph" >重置图谱 - 提示:点击一级分支可展开/收起明细,单分支最多展示 {{ maxNodes }} 个节点 + 提示:点击一级分支可展开/收起明细,法定代表人二级节点再次点击可查看相关企业,单分支最多展示 {{ maxNodes }} 个节点
@@ -24,17 +24,16 @@ v-for="(value, key) in detailData" :key="key" :label="fieldLabel(key)" - >{{ value || '—' }} + >{{ formatDetailValue(key, value) }}