门户修改静态文字

function getCurrentDateFormatted(){ const now = new Date(); const year = now.getFullYear(); const month = now.getMonth() + 1;

ini 复制代码
// 获取当月第一天
const firstDay = new Date(year, now.getMonth(), 1);
const firstDayOfWeek = firstDay.getDay();

// 调整周起始:将周日视为第7天,周一为第1天
const adjustedFirstDay = firstDayOfWeek === 0 ? 7 : firstDayOfWeek;

// 计算当前日期是当月的第几天
const dayOfMonth = now.getDate();

// 计算当前日期是第几周
let weekNumber;
if (dayOfMonth <= (8 - adjustedFirstDay)) {
  weekNumber = 1;
} else {
  const remainingDays = dayOfMonth - (8 - adjustedFirstDay);
  weekNumber = Math.ceil(remainingDays / 7) + 1;
}

return `${year}年${month}月第${weekNumber}周`;

} function getCurrentFestival(){ const now = new Date(); const year = now.getFullYear(); const month = now.getMonth() + 1; const date = now.getDate();

javascript 复制代码
// 计算春节日期(农历正月初一,使用近似公历日期)
// 春节通常在1月21日至2月20日之间
const springFestival = new Date(year, 0, 1);
const springFestivalDate = new Date(year, 0,
  (springFestival.getDay() >= 4 ? 22 : 15) - springFestival.getDay());

// 节日日期配置
const festivals = [
  { name: '元旦', date: new Date(year, 0, 1) },
  { name: '春节', date: springFestivalDate },
  { name: '清明节', date: new Date(year, 3, 4) }, // 通常是4月4日或5日
  { name: '劳动节', date: new Date(year, 4, 1) },
  { name: '端午节', date: new Date(year, 4, 5) }, // 农历五月初五,近似公历6月
  { name: '中秋节', date: new Date(year, 8, 15) }, // 农历八月十五,近似公历9月
  { name: '国庆节', date: new Date(year, 9, 1) }
];

// 检查当前日期是否是某个节日
for (const festival of festivals) {
  if (month === festival.date.getMonth() + 1 &&
    date === festival.date.getDate()) {
    return festival.name;
  }
}

return null; // 如果不是节日返回null

}

// 使用示例 const festival = getCurrentFestival();

this.getWidgetRef('static-text10923').$el.firstChild.lastChild.innerText = getCurrentDateFormatted()

this.getWidgetRef('static-text49065').$el.firstChild.lastChild.innerText = getCurrentFestival()

相关推荐
web前端1232 分钟前
# 多行文本溢出实现方法
前端·javascript
文心快码BaiduComate2 分钟前
早期人类奴役AI实录:用Comate Zulu 10min做一款Chrome插件
前端·后端·程序员
人间观察员4 分钟前
如何在 Vue 项目的 template 中使用 JSX
前端·javascript·vue.js
布列瑟农的星空6 分钟前
大话设计模式——多应用实例下的IOC隔离
前端·后端·架构
EndingCoder11 分钟前
安装与环境搭建:准备你的 Electron 开发环境
前端·javascript·electron·前端框架
Lucky_Turtle15 分钟前
【electron】一、安装,打包配置
javascript·arcgis·electron
Running_slave15 分钟前
Web跨标签页通信应该怎么玩?
javascript·css·后端
蓝银草同学27 分钟前
前端离线应用基石:深入浅出 IndexedDB 完整指南
前端·indexeddb
龙在天37 分钟前
什么是SourceMap?有什么作用?
前端
雪中何以赠君别42 分钟前
Vue 2 与 Vue 3 双向绑定 (v-model) 区别详解
前端·javascript·vue.js