chenrui  1 year ago
parent
commit
6eb868caff
1 changed files with 8 additions and 8 deletions
  1. 8 8
      src/utils/table.js

+ 8 - 8
src/utils/table.js

@@ -255,14 +255,14 @@ 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 (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}$`)