Ver Fonte

重量格式修改

zhongxiaoyu há 2 anos atrás
pai
commit
2957c975bd

+ 1 - 1
src/views/dashboard/hooks/usePublic.ts

@@ -505,7 +505,7 @@ export function usePublic() {
     if (newNum > 0 && newNum <= 1000) {
       return 1
     }
-    return (newNum / 1000).toFixed()
+    return Math.round(newNum / 1000)
   }
   return {
     optionLeft,

+ 1 - 1
src/views/realTime/components/AirportView/index.vue

@@ -130,7 +130,7 @@ const getAirportCount = async () => {
       if (weight <= 1000) {
         airportCount.weight = 1
       } else {
-        airportCount.weight = parseInt((weight / 1000).toFixed())
+        airportCount.weight = Math.round(weight / 1000)
       }
     } else {
       airportCount.weight = 0