From eed0b62c5a694fcb4da4db3b6ad414e1b3a6ca65 Mon Sep 17 00:00:00 2001 From: a0049873 <79py69t9wb@privaterelay.appleid.com> Date: Fri, 17 Jun 2022 10:40:09 +0800 Subject: [PATCH] =?UTF-8?q?=E8=83=BD=E5=8A=9B=E9=9B=86=E6=B0=94=E6=B3=A1?= =?UTF-8?q?=E5=9B=BE=20=20BUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/abilityStatistics/components/AtlasResources.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/front/src/views/abilityStatistics/components/AtlasResources.vue b/front/src/views/abilityStatistics/components/AtlasResources.vue index 703024c6..375b6f73 100644 --- a/front/src/views/abilityStatistics/components/AtlasResources.vue +++ b/front/src/views/abilityStatistics/components/AtlasResources.vue @@ -49,10 +49,10 @@ > - {{ dept.deptName || dept.type + '(' + dept.total + ')' }} + {{ (dept.deptName || dept.type) + '(' + dept.total + ')' }} @@ -218,6 +218,7 @@ const initBubbleList = (res) => { if (navSelect.value === '能力类型-能力集') { bubbleList.value = res.data.data.maxDept.resourceList.slice(0, 20) + console.log('能力类型============>', res.data.data.typeList) bubbleList.value.unshift({ id: res.data.data.maxDept.typeName, name: res.data.data.maxDept.typeName, @@ -232,6 +233,7 @@ departmentList.value = res.data.data.appAreaList } else { bubbleList.value = res.data.data.maxDept.resourceList.slice(0, 20) + console.log('其它 ============>', res.data.data.deptList) bubbleList.value.unshift({ id: res.data.data.maxDept.deptId, name: res.data.data.maxDept.deptName,