|
@@ -462,7 +462,7 @@ export default {
|
|
|
}
|
|
|
this.dataLow.color = ["#FAD153", "#DC5594", "#6161BD"];
|
|
|
this.dataLow.num = res.num;
|
|
|
- this.dataLow.kxsNum = res.kxsNum;
|
|
|
+ this.dataLow.kxsNum = arr ? arr : res.kxsNum;
|
|
|
this.dataLow.proportion = Math.floor(
|
|
|
(res.kxsNum / res.num).toFixed(2) * 100
|
|
|
)
|
|
@@ -528,7 +528,7 @@ export default {
|
|
|
}
|
|
|
this.dataLowcp.color = ["#FAD153", "#DC5594", "#6161BD"];
|
|
|
this.dataLowcp.num = res.num;
|
|
|
- this.dataLowcp.kxsNum = res.kxsNum;
|
|
|
+ this.dataLowcp.kxsNum = arr ? arr : res.kxsNum;
|
|
|
this.dataLowcp.proportion = Math.floor(
|
|
|
(res.kxsNum / res.num).toFixed(2) * 100
|
|
|
)
|
|
@@ -594,7 +594,7 @@ export default {
|
|
|
}
|
|
|
this.dataLowpt.color = ["#FAD153", "#DC5594", "#6161BD"];
|
|
|
this.dataLowpt.num = res.num;
|
|
|
- this.dataLowpt.kxsNum = res.kxsNum;
|
|
|
+ this.dataLowpt.kxsNum = arr ? arr : res.kxsNum;
|
|
|
this.dataLowpt.proportion = Math.floor(
|
|
|
(res.kxsNum / res.num).toFixed(2) * 100
|
|
|
)
|
|
@@ -660,7 +660,7 @@ export default {
|
|
|
}
|
|
|
this.dataLowyk.color = ["#FAD153", "#DC5594", "#6161BD"];
|
|
|
this.dataLowyk.num = res.num;
|
|
|
- this.dataLowyk.kxsNum = res.kxsNum;
|
|
|
+ this.dataLowyk.kxsNum = arr ? arr : res.kxsNum;
|
|
|
this.dataLowyk.proportion = Math.floor(
|
|
|
(res.kxsNum / res.num).toFixed(2) * 100
|
|
|
)
|
|
@@ -726,7 +726,7 @@ export default {
|
|
|
}
|
|
|
this.dataLowgf.color = ["#FAD153", "#DC5594", "#6161BD"];
|
|
|
this.dataLowgf.num = res.num;
|
|
|
- this.dataLowgf.kxsNum = res.kxsNum;
|
|
|
+ this.dataLowgf.kxsNum = arr ? arr : res.kxsNum;
|
|
|
this.dataLowgf.proportion = Math.floor(
|
|
|
(res.kxsNum / res.num).toFixed(2) * 100
|
|
|
)
|