fix: 修正建站日期统计算法

Signed-off-by: Libw·I <Libw-I@Libw.cc>
This commit is contained in:
Libw·I 2024-09-16 16:07:40 +08:00
parent 3d4607226c
commit f333797484
No known key found for this signature in database
GPG Key ID: 1B3ED5767A6BEB5E

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}`;
};