Element - The world's most popular Vue UI framework
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
value / v-model | 绑定值 | Date/string/number | — | — |
range | 时间范围,包括开始时间与结束时间。开始时间必须是周一,结束时间必须是周日,且时间跨度不能超过两个月。 | Array | — | — |
first-day-of-week | 周起始日 | Number | 1 到 7 | 1 |
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
date | 单元格代表的日期 | Date | — | — |
data | { type, isSelected, day},type ?表示该日期的所属月份,可选值有 prev-month,current-month,next-month;isSelected ?标明该日期是否被选中;day ?是格式化的日期,格式为 yyyy-MM-dd | Object | — | — |
getPreviousMonthFromYYYYMM(yearCur, monthCur){
const year = parseInt(yearCur, 10)
const month = parseInt(monthCur, 10)
// 确保月份是有效的
if (month < 1 || month > 12) return "Invalid month";
// 计算上个月的年份和月份
let previousYear = year;
let previousMonth = month - 1;
// 如果月份小于1,表示上一年
if (previousMonth === 0) {
previousMonth = 12;
previousYear -= 1;
}
// 格式化输出为两位数
previousMonth = (`0${ previousMonth}`).slice(-2);
return {
year: previousYear,
month: previousMonth
}
},
getNextMonthFromYYYYMM(yearCur, monthCur) {
const year = parseInt(yearCur, 10)
const month = parseInt(monthCur, 10)
// 确保月份是有效的
if (month < 1 || month > 12) return "Invalid month";
// 计算下个月的年份和月份
let nextYear = year;
let nextMonth = month + 1;
// 如果月份大于12,表示下一年
if (nextMonth === 13) {
nextMonth = 1;
nextYear += 1;
}
// 格式化输出为两位数
nextMonth = (`0${ nextMonth}`).slice(-2);
return {
year: nextYear,
month: nextMonth
}
},
// 上个月
const prevBtn = document.querySelector(`#calendar .el-calendar__button-group .el-button-group>button:nth-child(1)`);
prevBtn.addEventListener('click', () => {
this.currentDate.year = this.getPreviousMonthFromYYYYMM(this.currentDate.year, this.currentDate.month).year
this.currentDate.month = this.getPreviousMonthFromYYYYMM(this.currentDate.year, this.currentDate.month).month
this.getList()
});
// 今天
const todayBtn = document.querySelector(`#calendar .el-calendar__button-group .el-button-group>button:nth-child(2)`);
todayBtn.addEventListener('click', () => {
this.currentDate.year = new Date().getFullYear()
this.currentDate.month = (`0${ new Date().getMonth() + 1}`).slice(-2)
this.getList()
});
// 下个月
const nextBtn = document.querySelector(`#calendar .el-calendar__button-group .el-button-group>button:nth-child(3)`);
nextBtn.addEventListener('click', () => {
this.currentDate.year = this.getNextMonthFromYYYYMM(this.currentDate.year, this.currentDate.month).year
this.currentDate.month = this.getNextMonthFromYYYYMM(this.currentDate.year, this.currentDate.month).month
this.getList()
});
preMonth(){
document.querySelector(`#calendar .el-calendar__button-group .el-button-group>button:nth-child(1)`).click()
},
curMonth(){
document.querySelector(`#calendar .el-calendar__button-group .el-button-group>button:nth-child(2)`).click()
},
nextMonth(){
document.querySelector(`#calendar .el-calendar__button-group .el-button-group>button:nth-child(3)`).click()
},
this.calendarData[item.date] = data
// 日期格式yyyy-mm-dd
<el-calendar>
<!-- 这里使用的是 2.5 slot 语法,对于新项目请使用 2.6 slot 语法-->
<template
slot="dateCell"
slot-scope="{date, data}">
// 展示对应日期的数据
<div >
<span>{{ this.calendarData[data.day].filed }}</span>
</div>
<p :class="data.isSelected ? 'is-selected' : ''">
{{ data.day.split('-').slice(1).join('-') }} {{ data.isSelected ? '??' : ''}}
</p>
</template>
</el-calendar>
<style>
.is-selected {
color: #1989FA;
}
</style>
el-calendar禁用灰色区域的点击事件_el-calendar禁止点击上下月份日期-CSDN博客
.el-calendar-table:not(.is-range)
td.next{
pointer-events: none;
}
.el-calendar-table:not(.is-range)
td.prev{
pointer-events: none;
}
ElementPlus Calendar 日历_w3cschool
https://www.cnblogs.com/xcbk/articles/16490903.html
VUE Calendar 用VUE+ElementUI实现带农历 节气 节日 日期的日历_vue中使用vue-calendar-CSDN博客
Element - The world's most popular Vue UI framework
[若依ruoyi-vue框架使用日历显示课程表]用Elementui Calendar日历显示课程数据- Calendar日历自定义内容_以日历形式展示数据vue-CSDN博客