Compare commits

..

No commits in common. "d1ad913bab49ac3a831ae052c2184d14e4445344" and "04e2471a54c74353d52773d79116283d13d0a626" have entirely different histories.

View File

@ -1,7 +1,7 @@
<!--
* @Author: zhp
* @Date: 2023-12-27 13:54:52
* @LastEditTime: 2024-04-03 18:12:18
* @LastEditTime: 2024-04-03 16:29:52
* @LastEditors: zhp
* @Description:
-->
@ -138,7 +138,7 @@ export default {
// },
color:colors[sid],
data: rawData.length != 0 ? rawData[sid].map((d, did) =>
totalData[did] <= 0 ? 0 : (d / totalData[did]).toFixed(4)
totalData[did] <= 0 ? 0 : d / totalData[did]
) : []
};
});