本文主要是介绍Vue进阶(幺柒贰):应用 @fullcalendar/vue 实现日程日历,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 一、前言
- 二、安装 Fullcalendar
- 三、简易 DEMO
- 四、拓展阅读
一、前言
在项目实战过程中,需要为项目主页实现日程日历功能,主要包括日程的增删改查。
在网上研究一番后,经过对比发现一款比较好用的良心插件Fullcalendar
。
Fullcalendar
是一个可以创建日历日程管理的开源组件。下面让我们来认识下该日程日历组件的强大吧。
本文由以下几个部分组成:
1.安装
fullcalendar
;2.简易
DEMO
;3.
Template
中FullCalendar
属性注解;4.
script
中FullCalendar
属性方法注解;
二、安装 Fullcalendar
Vue
框架下,fullcalendar
被封装成了几种不同的版本,
-
@ fullcalendar/vue
-
vue-fullcalendar
需要注意的是,以上两种用法不一样,不要搞混淆了!
本文重点关注第一种 @ fullcalendar/vue
的用法。经实践,第二种实现效果不友好。
首先下载安装相关依赖包。
npm install --save @fullcalendar/vue @fullcalendar/core @fullcalendar/daygrid @fullcalendar/interaction @fullcalendar/timegrid
三、简易 DEMO
<template><FullCalendar :options="calendarOptions" class="eventDeal-wrap"/>
</template><script>
import FullCalendar from '@fullcalendar/vue'
import dayGridPlugin from '@fullcalendar/daygrid'
import interactionPlugin from '@fullcalendar/interaction'
import timeGridPlugin from '@fullcalendar/timegrid'
import '@fullcalendar/core/main.css'
import '@fullcalendar/daygrid/main.css'export default {name: 'DEMO',components: {FullCalendar},data () {return {calendarOptions: {// 引入的插件plugins: [dayGridPlugin, timeGridPlugin, interactionPlugin],// 日历头部按钮位置headerToolbar: {left: 'prev,next today',center: 'title',right: 'dayGridMonth, timeGridWeek, timeGridDay'},// 日历头部按钮中文转换buttonText: {today: '今天',month: '月',week: '周',day: '天'},initialView: 'dayGridMonth', // 指定默认显示视图locale: 'zh-ch', // 切换语言,当前为中文firstDay: '1', // 设置一周中显示的第一天是周几,周日是0,周一是1,以此类推weekNumberCalculation: 'ISO', // 与firstDay配套使用eventCOlor: '#3d8eec', // 全部日历日程背景色timeGridEventMinHeight: '20', // 设置事件的最小高度aspectRatio: '1.5', // 设置日历单元格宽高比displayEventTime: false, // 是否显示事件时间allDaySlot: false, // 周、日视图时,all-day不显示eventLimit: true, // 设置月日程,与all-day slot 的最大显示数量,超过的通过弹窗展示eventTimeFormat: {hour: 'numeric',minute: '2-digit',hour12: false},slotLabelFormat: {hour: '2-digit',minute: '2-digit',meridiem: false,hour12: false // 设置时间为24小时制},events: [], // 日程数组// 事件editable: true, // 是否可以进行(拖动、缩放)修改eventStartEditable: true, // Event日程开始时间可以改变,默认为true,若为false,则表示开始结束时间范围不能拉伸,只能拖拽eventDurationEditable: true, // Event日程的开始结束时间距离是否可以改变,默认为true,若为false,则表示开始结束时间范围不能拉伸,只能拖拽selectable: true, // 是否可以选中日历格selectMirror: true,selectMinDistance: 0, // 选中日历格的最小距离weekends: true,navLinks: true, // 天链接selectHelper: false,selectEventOverlap: false, // 相同时间段的多个日程视觉上是否允许重叠,默认为true,允许dayMaxEvents: true,dateClick: this.handleDateClick, // 日期点击eventsSet: this.handleEvents, // 事件点击eventClick: this.handleEventClick, // 日程点击信息展示eventDrop: this.handleEventDrop, // 日程拖动事件eventResize: this.eventResize // 日程缩放事件}}},mounted () {},created () {},methods: {// 日程保存saveEvent (val) {let eventsArr = this.calendarOptions.eventstry {if (eventsArr.length === 0) {eventsArr.push(val)} else {eventsArr.forEach((item, index, eventsArr) => {// 若为修改日程if (item.eventID === val.eventID) {throw new Error(index)}})// 若为新增日程eventsArr.push(val)}} catch (e) {// 若为修改日程eventsArr.splice(e.message, 1, val)}},// 日程删除deleteEvent (val) {let eventsArr = this.calendarOptions.eventstry {eventsArr.forEach((item, index, eventsArr) => {if (item.eventID === val) {throw new Error(index)}})} catch (e) {// 删除指定日程eventsArr.splice(parseInt(e.message), 1)}},// 日程事件点击handleEvents (info) {console.log('handleEvents.info:', info)// this.currentEvents = events},handleWeekendsToggle () {console.log('handleWeekendsToggle')this.calendarOptions.weekends = !this.calendarOptions.weekends},// 日期点击handleDateClick (selectInfo) {if (confirm('您是否要在【' + selectInfo.dateStr + '】添加一个新的事件?')) {// 父组件直接调用子组件方法this.$refs['eventDialogue'].openDialog('add')// 父组件直接修改子组件变量// this.$refs['eventDialogue'].dialogVisible = true}},// 日程点击信息展示handleEventClick (info) {console.log('handleEventClick.info:', info)info.el.style.borderColor = 'red'this.$refs['eventDialogue'].openDialog('view', info)},// 日程事件触发eventClick (info) {console.log('eventClick.info:', info)info.el.style.borderColor = 'red'},// 日程拖动事件handleEventDrop (info) {this.$refs['eventDialogue'].eventFormModel.start = info.event.startthis.$refs['eventDialogue'].eventFormModel.end = info.event.end},// 日程缩放事件eventResize (info) {this.$refs['eventDialogue'].eventFormModel.start = info.event.startthis.$refs['eventDialogue'].eventFormModel.end = info.event.end}}
}
</script>
<style>
</style>
以上示例代码注释中已清楚讲述了各参数的具体含义,下面就主要参数进行简单讲解。
Template
中FullCalendar
属性注解:
-
defaultView
表示当前默认使用的是月份视图(dayGridMonth
),就是看到的是一个月的视图。还有日视图(dayGridDay
)和周视图(dayGridWeek
)等。如果安装了timeGridPlugin
,还会有(timeGridWeek
,timeGridDay
)诸如此类的时间视图。 -
locale
本地化,我们使用中文简体(zh-cn)。 -
firstDay
一周的第1天,firstDay=“1”
表示星期一显示在第一个。 -
weekNumberCalculation
与firstDay
配合,设置成ISO
,一周第一天为星期一。
script
中FullCalendar
属性方法注解:
-
calendarPlugins
通过:plugins=“calendarPlugins”
,然后在calendarPlugins
中定义并引用要使用的功能插件。calendarPlugins:[dayGridPlugin, interactionPlugin]
-
eventTimeFormat
通过:eventTimeFormat=“eventTime”
,在eventTime
中定义事件的格式。 -
header
日程日历头部布局样式,left,center,right
,均可使用标题(title),前后按钮(prev
,next
), 切换按钮(today,dayGridMonth,dayGridDay,dayGridWeek
)设置。 -
buttonText
header
中按钮默认都是显示的英文,如果要人工手动改成中文,用:buttonText=“buttonText”
来改,在buttonText:{today: ‘今天’, month:‘月’}
中建立1对1的映射关系。 -
events
日程事件的具体内容和数据。 -
dateClick
通过@dateClick=“handleDateClick”
绑定函数来触发。指点击日程具体日期单元格时触发的事件。 -
eventClick
通过@eventClick=“handleEventClick”
绑定函数来触发。指点击具体日程events
时触发的事件。
npm run dev
后,通过 localhost:8080可以看到以下效果:
注:日程日历插件的样式可以通过F12
进行逐步优化。日程日历中更丰富、炫酷的效果及事件处理机制详参链接(英文)、链接(中文)。
四、拓展阅读
fullcalendar
文档
https://fullcalendar.io/
https://fullcalendar.io/docs/vue
https://www.helloweba.net/search.html?keys=fullcalendar- 项目地址
https://github.com/fullcalendar/fullcalendar
https://github.com/fullcalendar/fullcalendar-vue
这篇关于Vue进阶(幺柒贰):应用 @fullcalendar/vue 实现日程日历的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!