浏览代码

Merge branch 'master' of http://120.26.64.82:10880/BFFE/CA3.0

zhaoke 1 年之前
父节点
当前提交
565e7e3314
共有 36 个文件被更改,包括 113 次插入101 次删除
  1. 0 2
      src/utils/table.js
  2. 20 13
      src/views/advancedQuery/views/advancedHome.vue
  3. 20 13
      src/views/advancedQuery/views/advancedNew.vue
  4. 2 2
      src/views/baggageManagement copy/components/arrival/index.vue
  5. 2 2
      src/views/baggageManagement copy/components/baggage/index.vue
  6. 2 2
      src/views/baggageManagement copy/components/container/index.vue
  7. 2 2
      src/views/baggageManagement copy/components/departure/index.vue
  8. 2 2
      src/views/baggageManagement copy/components/departureC/index.vue
  9. 2 2
      src/views/baggageManagement copy/components/flight/index.vue
  10. 2 2
      src/views/baggageManagement copy/components/transferArrival/index.vue
  11. 2 2
      src/views/baggageManagement copy/components/transferDeparture/index.vue
  12. 2 2
      src/views/baggageManagementTemp/components/arrival/index.vue
  13. 2 2
      src/views/baggageManagementTemp/components/baggage/index.vue
  14. 2 2
      src/views/baggageManagementTemp/components/container/index.vue
  15. 2 2
      src/views/baggageManagementTemp/components/departure/index.vue
  16. 2 2
      src/views/baggageManagementTemp/components/departureC/index.vue
  17. 2 2
      src/views/baggageManagementTemp/components/flight/index.vue
  18. 2 2
      src/views/baggageManagementTemp/components/transferArrival/index.vue
  19. 2 2
      src/views/baggageManagementTemp/components/transferDeparture/index.vue
  20. 2 2
      src/views/flightViewManagement/components/arrival/index.vue
  21. 2 2
      src/views/flightViewManagement/components/baggage/index.vue
  22. 2 2
      src/views/flightViewManagement/components/container/index.vue
  23. 2 2
      src/views/flightViewManagement/components/departure/index.vue
  24. 2 2
      src/views/flightViewManagement/components/flight/index.vue
  25. 2 2
      src/views/newArrival/index.vue
  26. 2 2
      src/views/newBagDetails/components/baggageList.vue
  27. 2 2
      src/views/newDeparture/index.vue
  28. 2 2
      src/views/newFlightView/index.vue
  29. 2 2
      src/views/newQuery/components/search copy.vue
  30. 2 2
      src/views/newQuery/components/table.vue
  31. 2 2
      src/views/newTransfer/index.vue
  32. 2 2
      src/views/statisticsCharts/components/TableDialog.vue
  33. 9 9
      src/views/statisticsCharts/components/tableformbrs.vue
  34. 2 2
      src/views/statisticsCharts/components/tableformcp.vue
  35. 2 2
      src/views/statisticsCharts/components/tableforms.vue
  36. 2 2
      src/views/table/components/advanceQuery.vue

+ 0 - 2
src/utils/table.js

@@ -246,5 +246,3 @@ export function exportToExcel (table, tableName, fileName, headerRowNumber = 1)
     this.$message.error(error.message);
   }
 }
-
-export const throttledExportToExcel = _.throttle(exportToExcel, 1000)

+ 20 - 13
src/views/advancedQuery/views/advancedHome.vue

@@ -170,7 +170,7 @@ import { parseTime } from '@/utils/index'
 import { TempQuery, myQuery } from '@/api/temp'
 import { mapGetters } from 'vuex'
 import TableHeaderCell from '@/components/TableHeaderCell'
-import { setTableFilters, throttledExportToExcel } from '@/utils/table'
+import { setTableFilters, exportToExcel } from '@/utils/table'
 
 export default {
   name: 'AdvancedHome',
@@ -711,9 +711,12 @@ export default {
       }
     },
     dateRangeDisabled (date) {
-      return this.pickedDate
-        ? Math.abs(date - this.pickedDate) > 2 * 24 * 60 * 60 * 1000
-        : false
+      if (this.pickedDate) {
+        const diff = date - this.pickedDate,
+          day = 24 * 60 * 60 * 1000
+        return diff < -3 * day || diff > 2 * day
+      }
+      return false
     },
     objectSpanMethod ({ row, column, rowIndex, columnIndex }) {
       if (['passengerNameUpcase', 'bagWeight'].includes(column.property)) {
@@ -1170,15 +1173,19 @@ export default {
         return ['合计', `共${num}件`]
       }
     },
-    exportHandler (refName, tableName) {
-      if (!this.tableData.length) {
-        this.$message.info('无数据')
-        return
-      }
-      const table = this.$refs[refName].$el.cloneNode(true)
-      const fileName = `${tableName}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
-    },
+    exportHandler: _.throttle(
+      function (refName, tableName) {
+        if (!this.tableData.length) {
+          this.$message.info('无数据')
+          return
+        }
+        const table = this.$refs[refName].$el.cloneNode(true)
+        const fileName = `${tableName}.xlsx`
+        exportToExcel(table, tableName, fileName)
+      },
+      2000,
+      { trailing: false }
+    ),
   },
 }
 </script>

+ 20 - 13
src/views/advancedQuery/views/advancedNew.vue

@@ -289,7 +289,7 @@ import SimpleTable from '@/components/SimpleTable'
 import Dialog from '@/layout/components/Dialog'
 import { parseTime } from '@/utils/index'
 import { TempQuery } from '@/api/temp'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 
 const comparisonOperatorOptions = [
   {
@@ -541,9 +541,12 @@ export default {
       }
     },
     dateRangeDisabled(date) {
-      return this.pickedDate
-        ? Math.abs(date - this.pickedDate) > 2 * 24 * 60 * 60 * 1000
-        : false
+      if (this.pickedDate) {
+        const diff = date - this.pickedDate,
+          day = 24 * 60 * 60 * 1000
+        return diff < -3 * day || diff > 2 * day
+      }
+      return false
     },
     toOldAdvance() {
       this.$router.push('/advance')
@@ -1069,15 +1072,19 @@ export default {
     tableMountedHandler(refName, ref) {
       this.$refs[refName] = ref
     },
-    exportHandler(refName, tableName) {
-      if (!this.tableData.length) {
-        this.$message.info('无数据')
-        return
-      }
-      const table = this.$refs[refName].$el.cloneNode(true)
-      const fileName = `${tableName}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
-    },
+    exportHandler: _.throttle(
+      function (refName, tableName) {
+        if (!this.tableData.length) {
+          this.$message.info('无数据')
+          return
+        }
+        const table = this.$refs[refName].$el.cloneNode(true)
+        const fileName = `${tableName}.xlsx`
+        exportToExcel(table, tableName, fileName)
+      },
+      2000,
+      { trailing: false }
+    ),
   },
 }
 </script>

+ 2 - 2
src/views/baggageManagement copy/components/arrival/index.vue

@@ -137,7 +137,7 @@ import tableColsMixin from "../../mixins/tableCols";
 import timeZoneMixin from "../../mixins/timeZone";
 import { getQuery } from "@/api/flight";
 import TableHeaderCell from "@/components/TableHeaderCell";
-import { setTableFilters, throttledExportToExcel } from "@/utils/table";
+import { setTableFilters, exportToExcel } from "@/utils/table";
 import { getToken } from '@/utils/auth';
 
 export default {
@@ -546,7 +546,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName, 2);
+      exportToExcel(table, tableName, fileName, 2);
     },
   },
 };

+ 2 - 2
src/views/baggageManagement copy/components/baggage/index.vue

@@ -125,7 +125,7 @@ import Dialog from '@/layout/components/Dialog/index.vue'
 import { myQuery } from '@/api/dataIntegration'
 import { BaggageMessageQuery } from '@/api/flight'
 import tableColsMixin from '../../mixins/tableCols'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 import * as XLSX from 'xlsx'
 import XLSX_STYLE from 'xlsx-style'
 import FileSaver from 'file-saver'
@@ -528,7 +528,7 @@ export default {
       const table = this.$refs[refName].$el.cloneNode(true)
       const { bagSN, flightNO, flightDate } = this.queryData
       const fileName = `${tableName}-${bagSN}-${flightNO}-${flightDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
     exportMessageToExcel () {
       const xlsxDatas = [['Date & Time', 'Message']]

+ 2 - 2
src/views/baggageManagement copy/components/container/index.vue

@@ -171,7 +171,7 @@ import tableColsMixin from '../../mixins/tableCols'
 import TableHeaderCell from '@/components/TableHeaderCell'
 import { setTableFilters } from '@/utils/table'
 import { mapGetters } from 'vuex'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 export default {
   name: 'ContainerView',
   components: {
@@ -464,7 +464,7 @@ export default {
     exportHandler(refName, tableName) {
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}-${Object.values(this.queryData).join('-')}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
     async queryContainerBaggage(dataContent) {
       this.loading = true

+ 2 - 2
src/views/baggageManagement copy/components/departure/index.vue

@@ -139,7 +139,7 @@ import timeZoneMixin from "../../mixins/timeZone";
 import { getQuery } from "@/api/flight";
 import { GeneralDataReception } from "@/api/dataIntegration";
 import TableHeaderCell from "@/components/TableHeaderCell";
-import { setTableFilters, throttledExportToExcel, timeInZone } from "@/utils/table";
+import { setTableFilters, exportToExcel, timeInZone } from "@/utils/table";
 import { parseTime } from "@/utils/index";
 import { mapGetters } from "vuex";
 import { getToken } from '@/utils/auth';
@@ -586,7 +586,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName);
+      exportToExcel(table, tableName, fileName);
     },
   },
 };

+ 2 - 2
src/views/baggageManagement copy/components/departureC/index.vue

@@ -132,7 +132,7 @@ import tableColsMixin from "../../mixins/tableCols";
 import timeZoneMixin from "../../mixins/timeZone";
 import { getQuery } from "@/api/flight";
 import TableHeaderCell from "@/components/TableHeaderCell";
-import { setTableFilters, throttledExportToExcel } from "@/utils/table";
+import { setTableFilters, exportToExcel } from "@/utils/table";
 
 export default {
   name: "DepartureTerminalView",
@@ -508,7 +508,7 @@ this.$message.error("失败");
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName);
+      exportToExcel(table, tableName, fileName);
     },
   },
 };

+ 2 - 2
src/views/baggageManagement copy/components/flight/index.vue

@@ -310,7 +310,7 @@ import timeZoneMixin from '../../mixins/timeZone'
 import TableHeaderCell from '@/components/TableHeaderCell'
 import { setTableFilters } from '@/utils/table'
 import { mapGetters } from 'vuex'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 
 export default {
   name: 'FlightView',
@@ -1018,7 +1018,7 @@ export default {
     exportHandler (refName, tableName) {
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}-${this.queryData.flightNO}-${this.queryData.flightDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
     queryflightInfo (dataContent) {
       return myQuery({ serviceId: DATACONTENT_ID.flightInfo, dataContent })

+ 2 - 2
src/views/baggageManagement copy/components/transferArrival/index.vue

@@ -149,7 +149,7 @@ import tableColsMixin from "../../mixins/tableCols";
 import timeZoneMixin from "../../mixins/timeZone";
 import { getQuery } from "@/api/flight";
 import TableHeaderCell from "@/components/TableHeaderCell";
-import { setTableFilters, throttledExportToExcel, timeInZone } from "@/utils/table";
+import { setTableFilters, exportToExcel, timeInZone } from "@/utils/table";
 import { GeneralDataReception } from "@/api/dataIntegration";
 import { parseTime } from "@/utils/index";
 import { mapGetters } from "vuex";
@@ -725,7 +725,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName, 2);
+      exportToExcel(table, tableName, fileName, 2);
     },
   },
 };

+ 2 - 2
src/views/baggageManagement copy/components/transferDeparture/index.vue

@@ -150,7 +150,7 @@ import timeZoneMixin from "../../mixins/timeZone";
 import { getQuery } from "@/api/flight";
 import { GeneralDataReception } from "@/api/dataIntegration";
 import TableHeaderCell from "@/components/TableHeaderCell";
-import { setTableFilters, throttledExportToExcel, timeInZone } from "@/utils/table";
+import { setTableFilters, exportToExcel, timeInZone } from "@/utils/table";
 import { parseTime } from "@/utils/index";
 import { mapGetters } from "vuex";
 import { getToken } from '@/utils/auth';
@@ -700,7 +700,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName, 2);
+      exportToExcel(table, tableName, fileName, 2);
     },
   },
 };

+ 2 - 2
src/views/baggageManagementTemp/components/arrival/index.vue

@@ -138,7 +138,7 @@ import timeZoneMixin from '../../mixins/timeZone'
 import pf from '@/layout/mixin/publicFunc'
 import { TempQuery } from '@/api/temp'
 import TableHeaderCell from '@/components/TableHeaderCell'
-import { setTableFilters, throttledExportToExcel } from '@/utils/table'
+import { setTableFilters, exportToExcel } from '@/utils/table'
 
 export default {
   name: 'DepartureTerminalView',
@@ -556,7 +556,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName, 2)
+      exportToExcel(table, tableName, fileName, 2)
     }
   }
 }

+ 2 - 2
src/views/baggageManagementTemp/components/baggage/index.vue

@@ -130,7 +130,7 @@ import Dialog from '@/layout/components/Dialog/index.vue'
 import { myQuery } from '@/api/temp'
 import { BaggageMessageQuery } from '@/api/temp'
 import tableColsMixin from '../../mixins/tableCols'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 import * as XLSX from 'xlsx'
 import XLSX_STYLE from 'xlsx-style'
 import FileSaver from 'file-saver'
@@ -544,7 +544,7 @@ export default {
       const table = this.$refs[refName].$el.cloneNode(true)
       const { bagSN, flightNO, flightDate } = this.queryData
       const fileName = `${tableName}-${bagSN}-${flightNO}-${flightDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
     exportMessageToExcel () {
       const xlsxDatas = [['Date & Time', 'Message']]

+ 2 - 2
src/views/baggageManagementTemp/components/container/index.vue

@@ -171,7 +171,7 @@ import tableColsMixin from '../../mixins/tableCols'
 import TableHeaderCell from '@/components/TableHeaderCell'
 import { setTableFilters } from '@/utils/table'
 import { mapGetters } from 'vuex'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 export default {
   name: 'ContainerView',
   components: {
@@ -464,7 +464,7 @@ export default {
     exportHandler(refName, tableName) {
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}-${Object.values(this.queryData).join('-')}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
     async queryContainerBaggage(dataContent) {
       this.loading = true

+ 2 - 2
src/views/baggageManagementTemp/components/departure/index.vue

@@ -140,7 +140,7 @@ import pf from '@/layout/mixin/publicFunc'
 import { TempQuery } from '@/api/temp'
 import { GeneralDataReception } from '@/api/temp'
 import TableHeaderCell from '@/components/TableHeaderCell'
-import { setTableFilters, throttledExportToExcel, timeInZone } from '@/utils/table'
+import { setTableFilters, exportToExcel, timeInZone } from '@/utils/table'
 import { parseTime } from '@/utils/index'
 import { mapGetters } from 'vuex'
 export default {
@@ -604,7 +604,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     }
   }
 }

+ 2 - 2
src/views/baggageManagementTemp/components/departureC/index.vue

@@ -132,7 +132,7 @@ import tableColsMixin from "../../mixins/tableCols";
 import timeZoneMixin from "../../mixins/timeZone";
 import { TempQuery } from "@/api/temp";
 import TableHeaderCell from "@/components/TableHeaderCell";
-import { setTableFilters, throttledExportToExcel } from "@/utils/table";
+import { setTableFilters, exportToExcel } from "@/utils/table";
 
 export default {
   name: "DepartureTerminalView",
@@ -508,7 +508,7 @@ this.$message.error("失败");
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName);
+      exportToExcel(table, tableName, fileName);
     },
   },
 };

+ 2 - 2
src/views/baggageManagementTemp/components/flight/index.vue

@@ -310,7 +310,7 @@ import timeZoneMixin from '../../mixins/timeZone'
 import TableHeaderCell from '@/components/TableHeaderCell'
 import { setTableFilters } from '@/utils/table'
 import { mapGetters } from 'vuex'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 
 export default {
   name: 'FlightView',
@@ -1028,7 +1028,7 @@ export default {
     exportHandler (refName, tableName) {
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}-${this.queryData.flightNO}-${this.queryData.flightDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
     queryflightInfo (dataContent) {
       return myQuery(SERVICE_ID.flightInfo, ...dataContent)

+ 2 - 2
src/views/baggageManagementTemp/components/transferArrival/index.vue

@@ -330,7 +330,7 @@ import pf from '@/layout/mixin/publicFunc'
 // import { TempQuery } from '@/api/temp'
 import { GeneralDataReception } from '@/api/temp'
 import TableHeaderCell from '@/components/TableHeaderCell'
-import { setTableFilters, throttledExportToExcel, timeInZone } from '@/utils/table'
+import { setTableFilters, exportToExcel, timeInZone } from '@/utils/table'
 import { parseTime } from '@/utils/index'
 import { mapGetters } from 'vuex'
 export default {
@@ -925,7 +925,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName, 2)
+      exportToExcel(table, tableName, fileName, 2)
     }
   }
 }

+ 2 - 2
src/views/baggageManagementTemp/components/transferDeparture/index.vue

@@ -151,7 +151,7 @@ import pf from '@/layout/mixin/publicFunc'
 // import { TempQuery, WhatQuery } from '@/api/temp'
 import { GeneralDataReception } from '@/api/temp'
 import TableHeaderCell from '@/components/TableHeaderCell'
-import { setTableFilters, throttledExportToExcel, timeInZone } from '@/utils/table'
+import { setTableFilters, exportToExcel, timeInZone } from '@/utils/table'
 import { parseTime } from '@/utils/index'
 import { mapGetters } from 'vuex'
 export default {
@@ -722,7 +722,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName, 2)
+      exportToExcel(table, tableName, fileName, 2)
     }
   }
 }

+ 2 - 2
src/views/flightViewManagement/components/arrival/index.vue

@@ -137,7 +137,7 @@ import tableColsMixin from "../../mixins/tableCols";
 import timeZoneMixin from "../../mixins/timeZone";
 import { getQuery } from "@/api/flight";
 import TableHeaderCell from "@/components/TableHeaderCell";
-import { setTableFilters, throttledExportToExcel } from "@/utils/table";
+import { setTableFilters, exportToExcel } from "@/utils/table";
 import { getToken } from '@/utils/auth';
 
 export default {
@@ -546,7 +546,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName, 2);
+      exportToExcel(table, tableName, fileName, 2);
     },
   },
 };

+ 2 - 2
src/views/flightViewManagement/components/baggage/index.vue

@@ -126,7 +126,7 @@ import Dialog from '@/layout/components/Dialog/index.vue'
 import { myQuery } from '@/api/dataIntegration'
 import { BaggageMessageQuery } from '@/api/flight'
 import tableColsMixin from '../../mixins/tableCols'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 import * as XLSX from 'xlsx'
 import XLSX_STYLE from 'xlsx-style'
 import FileSaver from 'file-saver'
@@ -527,7 +527,7 @@ export default {
       const table = this.$refs[refName].$el.cloneNode(true)
       const { bagSN, flightNO, flightDate } = this.queryData
       const fileName = `${tableName}-${bagSN}-${flightNO}-${flightDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
     exportMessageToExcel () {
       const xlsxDatas = [['Date & Time', 'Message']]

+ 2 - 2
src/views/flightViewManagement/components/container/index.vue

@@ -171,7 +171,7 @@ import tableColsMixin from '../../mixins/tableCols'
 import TableHeaderCell from '@/components/TableHeaderCell'
 import { setTableFilters } from '@/utils/table'
 import { mapGetters } from 'vuex'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 export default {
   name: 'ContainerView',
   components: {
@@ -464,7 +464,7 @@ export default {
     exportHandler(refName, tableName) {
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}-${Object.values(this.queryData).join('-')}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
     async queryContainerBaggage(dataContent) {
       this.loading = true

+ 2 - 2
src/views/flightViewManagement/components/departure/index.vue

@@ -139,7 +139,7 @@ import timeZoneMixin from "../../mixins/timeZone";
 import { getQuery } from "@/api/flight";
 import { GeneralDataReception } from "@/api/dataIntegration";
 import TableHeaderCell from "@/components/TableHeaderCell";
-import { setTableFilters, throttledExportToExcel, timeInZone } from "@/utils/table";
+import { setTableFilters, exportToExcel, timeInZone } from "@/utils/table";
 import { parseTime } from "@/utils/index";
 import { mapGetters } from "vuex";
 import { getToken } from '@/utils/auth';
@@ -586,7 +586,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName);
+      exportToExcel(table, tableName, fileName);
     },
   },
 };

+ 2 - 2
src/views/flightViewManagement/components/flight/index.vue

@@ -310,7 +310,7 @@ import timeZoneMixin from '../../mixins/timeZone'
 import TableHeaderCell from '@/components/TableHeaderCell'
 import { setTableFilters } from '@/utils/table'
 import { mapGetters } from 'vuex'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 
 export default {
   name: 'FlightView',
@@ -1016,7 +1016,7 @@ export default {
     exportHandler (refName, tableName) {
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}-${this.queryData.flightNO}-${this.queryData.flightDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
     queryflightInfo (dataContent) {
       return myQuery({ serviceId: DATACONTENT_ID.flightInfo, dataContent })

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

@@ -60,7 +60,7 @@
 <script>
 import Dialog from "@/layout/components/Dialog";
 import TimeZoneSelector from "@/components/TimeZoneSelector";
-import { throttledExportToExcel } from "@/utils/table";
+import { exportToExcel } from "@/utils/table";
 import pf from '@/layout/mixin/publicFunc'
 import { mapGetters } from "vuex";
 import formMixin from "./mixins/form";
@@ -183,7 +183,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName);
+      exportToExcel(table, tableName, fileName);
     },
     tableLoad (arr) {
       let num = 0

+ 2 - 2
src/views/newBagDetails/components/baggageList.vue

@@ -11,7 +11,7 @@
 import Table from '../../newQuery/components/table.vue'
 import Dialog from '@/layout/components/Dialog/index.vue'
 import pf from '@/layout/mixin/publicFunc'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 export default {
   name: 'BaggageList',
   mixins: [pf],
@@ -165,7 +165,7 @@ export default {
       const table = this.$refs[refName].$el.cloneNode(true)
       const { luggageNum, carrierFlights, carrierFlightsDate } = this.query
       const fileName = `${tableName}-${luggageNum}-${carrierFlights}-${carrierFlightsDate}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
   }
 }

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

@@ -65,7 +65,7 @@
 <script>
 import Dialog from "@/layout/components/Dialog";
 import TimeZoneSelector from "@/components/TimeZoneSelector";
-import { throttledExportToExcel } from "@/utils/table";
+import { exportToExcel } from "@/utils/table";
 import pf from '@/layout/mixin/publicFunc'
 import { mapGetters } from "vuex";
 import formMixin from "./mixins/form";
@@ -188,7 +188,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName);
+      exportToExcel(table, tableName, fileName);
     },
     tableLoad (arr) {
       let num = 0

+ 2 - 2
src/views/newFlightView/index.vue

@@ -72,7 +72,7 @@
 <script>
 import Table from '@/views/newQuery/components/table.vue'
 import TimeZoneSelector from "@/components/TimeZoneSelector"
-import { throttledExportToExcel } from "@/utils/table"
+import { exportToExcel } from "@/utils/table"
 import { combine } from '@/utils'
 import pf from '@/layout/mixin/publicFunc'
 import Item from './item.vue'
@@ -192,7 +192,7 @@ export default {
       const { carrierFlights, carrierFlightsDate, outAirport, landAirport } = this.flightObj
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${carrierFlights}-${carrierFlightsDate}-${outAirport}-${landAirport}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName);
+      exportToExcel(table, tableName, fileName);
     },
     // 选中
     async checkChange (arr) {

+ 2 - 2
src/views/newQuery/components/search copy.vue

@@ -68,7 +68,7 @@ import SimpleTable from '@/components/SimpleTable'
 import Dialog from '@/layout/components/Dialog'
 import { parseTime } from '@/utils/index'
 import { Query } from '@/api/dataIntegration'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 import { mapGetters } from 'vuex'
 import { formatOrder } from '@/utils/validate'
 const comparisonOperatorOptions = [
@@ -759,7 +759,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     }
   }
 }

+ 2 - 2
src/views/newQuery/components/table.vue

@@ -58,7 +58,7 @@
 import pf from '@/layout/mixin/publicFunc'
 import { getToken } from '@/utils/auth'
 import { getAuthData, formatOrder } from '@/utils/validate'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 import tableColsMixin from '../mix/tableCols'
 import Dialog from '@/layout/components/Dialog/index.vue'
 import TableHeaderCell from '@/components/TableHeaderCell/index.vue'
@@ -562,7 +562,7 @@ export default {
     exportHandler () {
       const table = this.$refs['table'].$el.cloneNode(true)
       const fileName = `${this.downName || this.AqueryParams.auth_name}.xlsx`
-      throttledExportToExcel(table, `${this.downName || this.AqueryParams.auth_name}`, fileName)
+      exportToExcel(table, `${this.downName || this.AqueryParams.auth_name}`, fileName)
     },
     formatter (row, column, cellValue, index) {
       const sameColumn = this.tableCols.find(

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

@@ -63,7 +63,7 @@
 <script>
 import Dialog from "@/layout/components/Dialog";
 import TimeZoneSelector from "@/components/TimeZoneSelector";
-import { throttledExportToExcel } from "@/utils/table";
+import { exportToExcel } from "@/utils/table";
 import pf from '@/layout/mixin/publicFunc'
 import { mapGetters } from "vuex";
 import formMixin from "./mixins/form";
@@ -182,7 +182,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true);
       const fileName = `${tableName}-${this.currentAirport}-${this.startDate}-${this.endDate}.xlsx`;
-      throttledExportToExcel(table, tableName, fileName);
+      exportToExcel(table, tableName, fileName);
     },
   },
 };

+ 2 - 2
src/views/statisticsCharts/components/TableDialog.vue

@@ -28,7 +28,7 @@
 <script>
 import Dialog from '@/layout/components/Dialog/index.vue'
 import TableHeaderCell from '@/components/TableHeaderCell/index.vue'
-import { setTableFilters, throttledExportToExcel } from '@/utils/table'
+import { setTableFilters, exportToExcel } from '@/utils/table'
 import { TempQuery } from '@/api/temp'
 export default {
   name: 'TableDialog',
@@ -343,7 +343,7 @@ export default {
     exportClickHandler () {
       const table = this.$refs['table'].$el.cloneNode(true)
       const fileName = `${this.title}.xlsx`
-      throttledExportToExcel(table, `${this.title}`, fileName)
+      exportToExcel(table, `${this.title}`, fileName)
     }
   },
 }

+ 9 - 9
src/views/statisticsCharts/components/tableformbrs.vue

@@ -1135,7 +1135,7 @@
 <script>
 import NoData from '@/components/nodata'
 import { TempQuery } from '@/api/temp'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 export default {
   props: {
     // 接口ID
@@ -1498,44 +1498,44 @@ export default {
         let tableName = this.dataContent[1] + '国航行李BRS扫描数据统计表'
         const table = this.$refs['userTableData'].$el.cloneNode(true)
         const fileName = `${tableName}.xlsx`
-        throttledExportToExcel(table, tableName, fileName)
+        exportToExcel(table, tableName, fileName)
       } else if (this.upid == 2) {
         let tableName = 'Mannual Load扫描数据统计表'
         const table = this.$refs['userTableDatard'].$el.cloneNode(true)
         const fileName = `${tableName}.xlsx`
-        throttledExportToExcel(table, tableName, fileName)
+        exportToExcel(table, tableName, fileName)
       } else if (this.upid == 3) {
         let tableName = '航易行RFID扫描数据统计表'
         const table = this.$refs['TableDatardrfid'].$el.cloneNode(true)
         const fileName = `${tableName}.xlsx`
-        throttledExportToExcel(table, tableName, fileName)
+        exportToExcel(table, tableName, fileName)
       } else if (this.upid == 4) {
         let tableName = '中转四个流向统计表'
         const table = this.$refs['userTableDatas'].$el.cloneNode(true)
         const fileName = `${tableName}.xlsx`
-        throttledExportToExcel(table, tableName, fileName)
+        exportToExcel(table, tableName, fileName)
       } else if (this.upid == 5) {
         let tableName = '中转流向明细统计表'
         const table = this.$refs['transferTableData'].$el.cloneNode(true)
         const fileName = `${tableName}.xlsx`
-        throttledExportToExcel(table, tableName, fileName)
+        exportToExcel(table, tableName, fileName)
       } else if (this.upid == 6) {
         let tableName = '中转行李因素分析统计表'
         const table = this.$refs['transferBaggageTableData'].$el.cloneNode(true)
         const fileName = `${tableName}.xlsx`
-        throttledExportToExcel(table, tableName, fileName)
+        exportToExcel(table, tableName, fileName)
       } else if (this.upid == 7) {
         let tableName = '中转行李比例明细统计表'
         const table =
           this.$refs['baggageProportionTableData'].$el.cloneNode(true)
         const fileName = `${tableName}.xlsx`
-        throttledExportToExcel(table, tableName, fileName)
+        exportToExcel(table, tableName, fileName)
       }else if (this.upid == 8) {
         let tableName = '行李全流程服务水平百分比表'
         const table =
           this.$refs['userTableDataelt'].$el.cloneNode(true)
         const fileName = `${tableName}.xlsx`
-        throttledExportToExcel(table, tableName, fileName)
+        exportToExcel(table, tableName, fileName)
       }
     },
     cellClass({ row, column, rowIndex, columnIndex }) {

+ 2 - 2
src/views/statisticsCharts/components/tableformcp.vue

@@ -124,7 +124,7 @@
 </template>
 <script>
 import NoData from '@/components/nodata'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 export default {
   props: {
     isloadings: {
@@ -363,7 +363,7 @@ export default {
       let tableName = '中转专项报表'
       const table = this.$refs['userTableDatas'].$el.cloneNode(true)
       const fileName = `${tableName}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
   },
 }

+ 2 - 2
src/views/statisticsCharts/components/tableforms.vue

@@ -95,7 +95,7 @@
 </template>
 <script>
 import NoData from '@/components/nodata'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 export default {
   props: {
     isloadings: {
@@ -178,7 +178,7 @@ export default {
       let tableName = '运送效率报表'
       const table = this.$refs['userTableDatasr'].$el.cloneNode(true)
       const fileName = `${tableName}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     },
   },
 }

+ 2 - 2
src/views/table/components/advanceQuery.vue

@@ -74,7 +74,7 @@ import SimpleTable from '@/components/SimpleTable'
 import Dialog from '@/layout/components/Dialog'
 import { parseTime } from '@/utils/index'
 import { Query } from '@/api/dataIntegration'
-import { throttledExportToExcel } from '@/utils/table'
+import { exportToExcel } from '@/utils/table'
 
 const comparisonOperatorOptions = [
   {
@@ -778,7 +778,7 @@ export default {
       }
       const table = this.$refs[refName].$el.cloneNode(true)
       const fileName = `${tableName}.xlsx`
-      throttledExportToExcel(table, tableName, fileName)
+      exportToExcel(table, tableName, fileName)
     }
   }
 }