zhongxiaoyu 2 年 前
コミット
d3c707de16

+ 5 - 4
src/views/realTime/components/FlightView/useFlightInfo.ts

@@ -180,13 +180,14 @@ export function useFlightInfo(name: string, dataContent: CommonValue[]) {
   const computedFlightInfo = computed(() => item => {
     if (['departureAirportZh', 'landingAirportZh'].includes(item.key)) {
       return airportNameZhMap[flightInfo[item.key.slice(0, -2)]!]
-    } else if (item.getter) {
+    }
+    if (item.getter) {
       return item.getter(flightInfo)
-    } else if (item.key) {
+    }
+    if (item.key) {
       return String(flightInfo[item.key] ?? '')
-    } else {
-      return ''
     }
+    return ''
   })
 
   const airportNameZhMap: { [code: string]: string } = reactive({})

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

@@ -240,7 +240,7 @@ const { cellClickHandler } = useTableCellClick(`${props.name}Goods`)
     }
     &-item {
       display: flex;
-      &-value {
+      .el-tooltip__trigger {
         max-width: 300px;
         overflow: hidden;
         white-space: nowrap;