细节优化

This commit is contained in:
kron
2025-07-28 15:05:19 +08:00
parent e116c8d22f
commit 955abbb115
7 changed files with 98 additions and 12 deletions

View File

@@ -7,7 +7,7 @@ export const formatTimestamp = (timestamp) => {
const month = date.getMonth() + 1;
const day = date.getDate();
return `${year}${month}${day}`;
return `${year}-${month}-${day}`;
};
export const checkConnection = () => {