Browse Source

2.26问题修改

zhongxiaoyu 2 years ago
parent
commit
4f8f04fb44

BIN
src/assets/nav/ic_export.png


BIN
src/assets/nav/ic_setting.png


+ 1 - 1
src/views/dataQuery/components/DataQueryView/useTable.ts

@@ -55,7 +55,7 @@ export function useTable(
               sFlightDate,
             ]
           : [startDate, endDate, keyWords]
-      dataContent = dataContent.map(v => v || null)
+      dataContent = dataContent.map(v => (v === '' ? null : v))
       const {
         code,
         returnData: { columnSet, listValues },

+ 11 - 11
src/views/realTime/components/AirportView/useAirportTable.ts

@@ -66,12 +66,12 @@ const columnGroupsMap: {
           columnLabel: '停机位',
           fixed: true,
         },
-        {
-          columnName: 'lastflightNO',
-          columnLabel: '前序航班',
-          fixed: true,
-          defaultHidden: true,
-        },
+        // {
+        //   columnName: 'lastflightNO',
+        //   columnLabel: '前序航班',
+        //   fixed: true,
+        //   defaultHidden: true,
+        // },
         // {
         //   columnName: 'acLandingTime',
         //   columnLabel: '实际降落\n时间',
@@ -419,11 +419,11 @@ const columnGroupsMap: {
           columnLabel: '停机位',
           fixed: true,
         },
-        {
-          columnName: 'lastflightNO',
-          columnLabel: '前序航班',
-          fixed: true,
-        },
+        // {
+        //   columnName: 'lastflightNO',
+        //   columnLabel: '前序航班',
+        //   fixed: true,
+        // },
         // {
         //   columnName: 'acLandingTime',
         //   columnLabel: '实际降落\n时间',

+ 4 - 4
src/views/realTime/components/WaybillView/useWaybillInfo.ts

@@ -43,10 +43,10 @@ const waybillInfoItemsMap = {
       label: '运单',
       key: 'stockCode',
     },
-    {
-      label: '运单类型',
-      key: 'type',
-    },
+    // {
+    //   label: '运单类型',
+    //   key: 'type',
+    // },
     {
       label: '机场代理',
       key: 'proxy',

+ 2 - 2
src/views/realTime/hooks/useTable.ts

@@ -293,7 +293,7 @@ const tableColumnsMap: {
   ],
   ArrivalFlightWaybill: [
     { columnLabel: '运单号', columnName: 'stockCode', width: 120 },
-    { columnLabel: '集装器数量', columnName: 'stowageNum' },
+    // { columnLabel: '集装器数量', columnName: 'stowageNum' },
     {
       columnLabel: '品名',
       columnName: 'typeCode',
@@ -720,7 +720,7 @@ const tableColumnsMap: {
   ],
   InternationalArrivalFlightWaybill: [
     { columnLabel: '运单号', columnName: 'stockCode', width: 120 },
-    { columnLabel: '集装器数量', columnName: 'stowageNum' },
+    // { columnLabel: '集装器数量', columnName: 'stowageNum' },
     {
       columnLabel: '品名',
       columnName: 'typeCode',

+ 2 - 2
src/views/statisticalanalysis/components/echart/statisticsHeader.vue

@@ -81,7 +81,7 @@
       </el-form-item>
       <el-form-item v-if="withExport">
         <img
-          src="../../../assets/nav/ic_export.png"
+          src="@/assets/nav/ic_export.png"
           title="导出"
           class="btn-icon-only"
           @click="exportClickHandler"
@@ -89,7 +89,7 @@
       </el-form-item>
       <el-form-item v-if="withSetting">
         <img
-          src="../../../assets/nav/ic_setting.png"
+          src="@/assets/nav/ic_setting.png"
           title="节点设置"
           class="btn-icon-only"
           @click="settingClickHandler"