|
@@ -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) => {
|