修改bug

This commit is contained in:
‘937886381’
2024-06-26 10:59:23 +08:00
parent 196a615f61
commit 92c0c33fbd
12 changed files with 327 additions and 340 deletions

View File

@@ -109,6 +109,9 @@ export default ({
{
value: previousSum,
name: preName,
tooltip: {
formatter: `${preName} : ${previousSum}`
},
selected: false,
itemStyle: {
borderJoin: "round",
@@ -129,10 +132,11 @@ export default ({
},
},
{
value:previousSum == 0
? 1
: 0,
name: "-",
value:previousSum === 0 ? 1 : 0,
name: preName,
tooltip: {
formatter: `${preName} : ${previousSum}`
},
itemStyle: { color: "transparent" },
label: { show: false },
},