会议室信息

This commit is contained in:
XaoLi717 2024-11-14 16:36:43 +08:00
parent ddb909d2a8
commit 95a83a3f47

View File

@ -193,7 +193,7 @@ const getNow = (date:number)=>{
const year = now.getFullYear();
const month = String(now.getMonth() + 1).padStart(2, '0'); // 0 +1
const day = String(now.getDate()).padStart(2, '0');
console.log("getNow",`${year}-${month}-${day}`)
// console.log("getNow",`${year}-${month}-${day}`)
return `${year}-${month}-${day}`;
}