Ver Fonte

代码提交

LiuShu_0203 há 5 meses atrás
pai
commit
3f8f329895
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/App.vue

+ 1 - 1
src/App.vue

@@ -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,