Merge branch 'dev' into dev

This commit is contained in:
底层用户 2024-09-30 15:13:44 +08:00 committed by GitHub
commit 29062f29d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -124,19 +124,21 @@ export const checkDays = () => {
// 建站日期统计
export const siteDateStatistics = (startDate) => {
const currentDate = new Date();
const differenceInTime = currentDate.getTime() - startDate.getTime();
const differenceInDays = differenceInTime / (1000 * 3600 * 24);
const differenceInMonths = differenceInDays / 30;
const differenceInYears = differenceInMonths / 12;
if (differenceInYears >= 1) {
return `本站已经苟活了 ${Math.floor(differenceInYears)}${Math.floor(
differenceInMonths % 12,
)} ${Math.round(differenceInDays % 30)} `;
} else if (differenceInMonths >= 1) {
return `本站已经苟活了 ${Math.floor(differenceInMonths)}${Math.round(
differenceInDays % 30,
)} `;
} else {
return `本站已经苟活了 ${Math.round(differenceInDays)}`;
let years = currentDate.getFullYear() - startDate.getFullYear();
let months = currentDate.getMonth() - startDate.getMonth();
let days = currentDate.getDate() - startDate.getDate();
// 如果天数或月份为负数,则调整天数和月份
if (days < 0) {
months--;
const lastMonth = new Date(currentDate.getFullYear(), currentDate.getMonth() - 1, 0);
days += lastMonth.getDate();
}
if (months < 0) {
years--;
months += 12;
}
return `本站已经苟活了 ${years}${months}${days}`;
};