zhongxiaoyu 2 жил өмнө
parent
commit
9db5959433

+ 2 - 2
src/views/dataQuery/components/DataQueryView/index.vue

@@ -106,8 +106,8 @@
               placeholder="属性"
               clearable
             >
-              <el-option value="DOM" label="国内" />
-              <el-option value="INT" label="国际" />
+              <el-option value="DOM" label="DOM" />
+              <el-option value="INT" label="INT" />
             </el-select>
           </el-form-item>
           <el-form-item prop="sFlightDate" style="width: 148px">

+ 10 - 3
src/views/realTime/components/AirportView/index.vue

@@ -16,7 +16,7 @@
         <CountBox
           :count-number="airportCount.weight"
           :label="`已${isDeparture ? '装载' : '卸载'}重量(吨)`"
-          :length="4"
+          :length="5"
         />
       </div>
       <div class="airport-settings">
@@ -126,8 +126,15 @@ const getAirportCount = async () => {
     const { flightNum, finishFlightNum, weight } = listValues[0]
     airportCount.flightNum = flightNum ?? 0
     airportCount.finishFlightNum = finishFlightNum ?? 0
-    airportCount.weight = weight ? Math.ceil(weight / 1000) : 0 // 向上取整
-    // airportCount.weight = weight ? parseFloat((weight / 1000).toFixed(2)) : 0 // 四舍五入保留两位
+    if (typeof weight === 'number' && weight > 0) {
+      if (weight <= 1000) {
+        airportCount.weight = 1
+      } else {
+        airportCount.weight = parseInt((weight / 1000).toFixed())
+      }
+    } else {
+      airportCount.weight = 0
+    }
   } catch (error) {
     console.error(error)
   }

+ 1 - 0
src/views/realTime/components/AirportView/useAirportTable.ts

@@ -719,6 +719,7 @@ const columnGroupsMap: {
         {
           columnName: 'tally',
           columnLabel: '理货\n(板卡/运单/件/重量)',
+          width: 120,
         },
         {
           columnName: 'tallyTime_in',

+ 4 - 1
src/views/realTime/components/FlightView/index.vue

@@ -179,7 +179,10 @@ const tableFormatter: CommonTableFormatter = (
     const splitValue = value.split('_')
     if (splitValue.length === 2) {
       const [count, datetime] = splitValue
-      return `${count}\n${datetimeToTime(datetime, flightDate as CommonValue)}`
+      return `${count ? `${count}\n` : ''}${datetimeToTime(
+        datetime,
+        flightDate as CommonValue
+      )}`
     } else {
       return datetimeToTime(value, flightDate as CommonValue)
     }