|
@@ -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}$`)
|