...
|
...
|
@@ -3028,21 +3028,24 @@ Handling Information |
|
|
Object.assign(this.$data, this.$options.data());
|
|
|
},
|
|
|
NumberToDate(cellValue){
|
|
|
// 将 Excel 的序列号转换为 JavaScript 的 Date 对象
|
|
|
// 注意:Excel 的日期序列号是从 1900 年 1 月 1 日开始计算的(不考虑1904日期系统)
|
|
|
let dateObj = new Date((cellValue - 1) * 24 * 3600 * 1000 + new Date(1900, 0, 1).getTime());
|
|
|
// 计算从1900年1月1日到目标日期的总毫秒数
|
|
|
let totalMilliseconds = (cellValue - 1) * 24 * 3600 * 1000;
|
|
|
|
|
|
// 考虑 Excel 中的一个已知错误,即它认为1900年是闰年,所以需要减去一天
|
|
|
// 创建一个基于1900年1月1日的UTC时间对象
|
|
|
let dateObj = new Date(Date.UTC(1900, 0, 1) + totalMilliseconds);
|
|
|
|
|
|
// 修正 Excel 中的一个已知错误,即它认为1900年是闰年
|
|
|
if (cellValue > 60) {
|
|
|
dateObj = new Date(dateObj.getTime() - 24 * 3600 * 1000);
|
|
|
}
|
|
|
|
|
|
// 将 Date 对象格式化为你想要的日期字符串
|
|
|
// 格式化为中文日期字符串
|
|
|
let formattedDate = dateObj.toLocaleDateString('zh-CN', {
|
|
|
year: 'numeric',
|
|
|
month: '2-digit',
|
|
|
day: '2-digit'
|
|
|
});
|
|
|
|
|
|
return formattedDate;
|
|
|
},
|
|
|
handleChange(file, fileList) {
|
...
|
...
|
@@ -3146,6 +3149,7 @@ Handling Information |
|
|
|
|
|
this.form.isu.isu_day_mounth_year=this.formattedDate();
|
|
|
}else{
|
|
|
console.log(M18)
|
|
|
const tempDate=this.NumberToDate(M18);
|
|
|
const outFlightDate=tempDate.split('/')[2];
|
|
|
const SSRInfo = A20.replace(/[^a-zA-Z0-9\s]/g, '');
|
...
|
...
|
|