浏览代码

重量格式修改

zhongxiaoyu 2 年之前
父节点
当前提交
2957c975bd
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      src/views/dashboard/hooks/usePublic.ts
  2. 1 1
      src/views/realTime/components/AirportView/index.vue

+ 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