// 获取今天是一年中的第几天 getDay() { const currentYear = new Date().getFullYear().toString(); // 今天减今年的第一天(xxxx年01月01日) const hasTimestamp = new Date() - new Date(currentYear); // 86400000 = 24 * 60 * 60 * 1000 let hasDays = Math.ceil(hasTimestamp / 86400000);return hasDays; },