Update excel.xlsx.js

This commit is contained in:
邹景立 2021-01-25 14:17:28 +08:00
parent f71e19b6a9
commit 330fa73dd0

View File

@ -83,7 +83,7 @@ define(['xlsx'], function () {
/*! 表格单元内容转换 */
excel.read.CellToValue = function (v) {
if (typeof v !== 'undefined' && /^\d+\.+\d{12}$/.test(v)) {
if (typeof v !== 'undefined' && /^\d+\.\d{12}$/.test(v)) {
var d = XLSX.SSF.parse_date_code(v);
return d.y + '-' + d.m + '-' + d.d + ' ' + d.H + ':' + d.M + ':' + d.S;
} else {