Browse Source

数据展示问题

citygis-lhh 3 months ago
parent
commit
01f31b3a1c
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/views/DataCenterGis/components/RightPanel.vue

+ 3 - 2
src/views/DataCenterGis/components/RightPanel.vue

@@ -49,7 +49,7 @@
                 :key="index2"
               >
                 <span>{{ item.type }}</span>
-                <span class="num">{{ partitionData[key][childKey][0].num }}</span>
+                <span class="num">{{ partitionData[key][childKey][index2].num }}</span>
               </div>
             </template>
             <template v-else-if="childKey == 'cold'">
@@ -63,7 +63,7 @@
                 :key="index2"
               >
                 <span>{{ item.type }}</span>
-                <span class="num">{{ partitionData[key][childKey][0].num }}</span>
+                <span class="num">{{ partitionData[key][childKey][index2].num }}</span>
               </div>
             </template>
           </template>
@@ -319,6 +319,7 @@ const getLeftChartData = async () => {
     const res = await getDataByArea();
     if (res.code == 200 && res.data) {
       //重塑数据结构
+
       Object.keys(res.data).forEach((key) => {
         if (res.data && res.data[key]) {
           res.data[key].forEach((item) => {