LiuShu_0203 hace 5 meses
padre
commit
3f8f329895
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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,