chenrui  vor 1 Jahr
Ursprung
Commit
0d054de653
2 geänderte Dateien mit 19 neuen und 17 gelöschten Zeilen
  1. 11 9
      src/utils/table.js
  2. 8 8
      src/views/statisticsCharts/components/tableformbrs.vue

+ 11 - 9
src/utils/table.js

@@ -164,7 +164,7 @@ function devideGroup (cellName) {
   }
 }
 
-export function exportToExcel (table, tableName, fileName, headerRowNumber = 1) {
+export function exportToExcel (table, tableName, fileName, headerRowNumber = 1, typename) {
   try {
     // 设置了列的fixed属性后会有两个table元素,导出数据会重复,需要去掉一个table
     const fixedTable = table.querySelector('.el-table__fixed')
@@ -255,14 +255,16 @@ export function exportToExcel (table, tableName, fileName, headerRowNumber = 1)
             }
           }
           const isPercentage = /^\d+(\.\d+){0,1}\%$/.test(cellValue)
-          // if (isPercentage) {
-          //   xlsxDatas[cellName] = {
-          //     ...xlsxDatas[cellName],
-          //     t: 'n',
-          //     z: '0.00%',
-          //     v: parseFloat(cellValue),
-          //   }
-          // }
+          if (!typename) {
+            if (isPercentage) {
+              xlsxDatas[cellName] = {
+                ...xlsxDatas[cellName],
+                t: 'n',
+                z: '0.00%',
+                v: parseFloat(cellValue),
+              }
+            }
+          }
           // const date = '\\d{4}\\-\\d{2}\\-\\d{2}'
           // const time = '\\d{2}\\:\\d{2}\:\\d{2}'
           // const dateReg = new RegExp(`^${date}$`)

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

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