|
@@ -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 }) {
|