瀏覽代碼

表格时间格式化、航站视图默认航站问题

zhongxiaoyu 1 年之前
父節點
當前提交
95fbbcce32

+ 1 - 1
src/views/newArrival/index.vue

@@ -95,7 +95,7 @@ export default {
   },
   mounted () {
     this.timer = setInterval(() => {
-      this.getAirPortData()
+      this.getAirPortData(0)
     }, LOOP_INTERVAL.arrivalTable)
   },
   destroyed () {

+ 1 - 1
src/views/newDeparture/index.vue

@@ -100,7 +100,7 @@ export default {
   },
   mounted () {
     this.timer = setInterval(() => {
-      this.getAirPortData()
+      this.getAirPortData(0)
     }, LOOP_INTERVAL.departureTable)
   },
   destroyed () {

+ 14 - 3
src/views/newQuery/components/table.vue

@@ -628,9 +628,20 @@ export default {
       throttledExportToExcel(table, `${this.downName || this.AqueryParams.auth_name}`, fileName)
     },
     formatter (row, column, cellValue, index) {
-      const sameColumn = this.tableCols.find(
-        col => col.columnName === column.property
-      )
+      let sameColumn = null
+      this.tableCols.some(col => {
+        if (col.columnName === column.property) {
+          sameColumn = col
+          return true
+        } else if (col.children) {
+          col.children.some(childCol => {
+            if (childCol.columnName === column.property) {
+              sameColumn = childCol
+              return true
+            }
+          })
+        }
+      })
       if (sameColumn && this.fromDataType(sameColumn.dataType) === 'datetime') {
         return (cellValue ?? '').replace('T', ' ')
       }

+ 1 - 1
src/views/newTransfer/index.vue

@@ -98,7 +98,7 @@ export default {
   },
   mounted () {
     this.timer = setInterval(() => {
-      this.getAirPortData()
+      this.getAirPortData(0)
     }, LOOP_INTERVAL.transferArrivalTable)
   },
   destroyed () {