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,