@@ -511,7 +511,7 @@ const progressbar = (datalist: any) => {
show: true,
position: 'right',
formatter() {
- const total = datalist.jdTime ? 0 : Number(datalist.jdTime).toFixed(2); // 假设总条数为20
+ const total = datalist.runTime === null ? 0 : Number(datalist.runTime).toFixed(2); // 假设总条数为20
return `${total}h`;
},
fontSize: 16,