了解Vue中日历插件Fullcalendar

实现效果如下图:

月视图
在这里插入图片描述

在这里插入图片描述
周视图
在这里插入图片描述
日视图
在这里插入图片描述

官方文档地址:Vue Component - Docs | FullCalendar

1、安装与FullCalendar相关的依赖项

npm install --save @fullcalendar/vue @fullcalendar/core @fullcalendar/daygrid @fullcalendar/timegrid @fullcalendar/list
npm install --save @fullcalendar/interaction
npm install --save @fullcalendar/core @fullcalendar/resource-timeline

2.使用日历的页面需要导入

import FullCalendar from "@fullcalendar/vue";
import dayGridPlugin from "@fullcalendar/daygrid";
import timeGridPlugin from "@fullcalendar/timegrid";
import listPlugin from "@fullcalendar/list";
import interactionPlugin from "@fullcalendar/interaction";
// import resourceTimelinePlugin from "@fullcalendar/resource-timeline";

完整代码

<template><div><div class="fc-toolbar"><div class="fc-left"><el-button-group><el-button @click="month"></el-button><el-button @click="week"></el-button><el-button @click="today"> 今天 </el-button></el-button-group></div><div class="fc-center"><el-button icon="el-icon-arrow-left" @click="prev"/><p class="title">{{ title }}</p><el-button icon="el-icon-arrow-right" @click="next" /></div><div><el-select v-model="type" style="margin-right: 20px" @change="handleType"><el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" /></el-select><el-button class="search" style="margin-right: 20px" type="button" @click="addEvent">新增</el-button><el-button class="search" type="button" @click="search">查询</el-button></div></div><el-dialog title="添加日程" :visible.sync="dialogFormVisible" width="600px"><el-form :model="form"><el-form-item label="事件"><el-input v-model="form.content" autocomplete="off" placeholder="请输入事件"></el-input></el-form-item></el-form><div slot="footer" class="dialog-footer"><el-button @click="dialogFormVisible = false">取 消</el-button><el-button type="primary" @click="navConfirm">确 定</el-button></div></el-dialog><div v-if="showFullcalendar">加载数据中......</div><FullCalendar v-else id="calendar" ref="fullCalendar" class="demo-app-calendar" :options="calendarOptions"><template v-slot:eventContent="arg"><el-popover placement="top-start" title="标题" width="200" :visible-arrow="false" trigger="click"><i class="title">{{ arg.event.title }}</i><el-button @click="more(arg.event)"> 更多 </el-button><div slot="reference" class="popper-content"><span>{{ arg.timeText }}</span><i>{{ arg.event.title }}</i></div></el-popover></template><template v-slot:dayCellContent="arg">{{ arg.dayNumberText }}</template><template v-slot:resourceLabelContent="arg">{{ arg.resource.id }}</template></FullCalendar></div>
</template>
<script>import FullCalendar from "@fullcalendar/vue";import dayGridPlugin from "@fullcalendar/daygrid";import timeGridPlugin from "@fullcalendar/timegrid";import listPlugin from "@fullcalendar/list";import interactionPlugin from "@fullcalendar/interaction";// import resourceTimelinePlugin from "@fullcalendar/resource-timeline";let clickCount = 0;let prev = ""; // 上一次点击的dom节点export default {components: {FullCalendar, // make the <FullCalendar> tag available},data() {return {showFullcalendar: true,title: "",currentView: {},options: [{ value: "timeline", label: "resource-timeline" },{ value: "dategrid", label: "agenda" },],type: "dategrid",calendarOptions: {locale: "zh",timeZone: "UTC",plugins: [dayGridPlugin,timeGridPlugin,listPlugin,// resourceTimelinePlugin,interactionPlugin,],buttonText: {// 设置按钮today: "今天",month: "月",week: "周",dayGrid: "天",},initialView: "dayGridMonth", // 设置默认显示月,可选周、日resourceAreaWidth: 200,contentHeight: 600,slotMinWidth: 70,resourceOrder: "number",editable: true,dayMaxEvents: true, // allow "more" link when too many eventseventDurationEditable: true, // 可以调整事件的时间selectable: true, // 日历格子可选择nowIndicator: true, // 现在的时间线显示eventDisplay: "block", // 争对全天的情况下,以块状显示headerToolbar: false, // 隐藏头部的导航栏selectMirror: false,displayEventEnd: true, // like 08:00 - 13:00eventTimeFormat: {// like '14:30:00'hour: "2-digit",minute: "2-digit",meridiem: false,hour12: false, // 设置时间为24小时},events: [],eventColor: "#378006",allDayText: "全天",dateClick: this.handleDateClick, //点击日程事件eventClick: this.handleEventClick,  //点击日历中的某一日程select:this.handleDateSelect, // 监听用户选择的时间段,eventDrop:this.handleEventDrop,  //监听事件被拖动的操作eventResize:this.handleEventResize, //监听事件调整大小的操作resourceAreaHeaderContent: "Rooms",resources: [{id: "111",title: "asas",number: 1,},],schedulerLicenseKey: "GPL-My-Project-Is-Open-Source",resourceLabelContent(arg) {return {html: `<div>id: ${arg.resource.id}</div><div>title: ${arg.resource.title}</div>`,};},views: {customTimeLineWeek: {type: "resourceTimeline",duration: { weeks: 1 },slotDuration: { days: 1 },buttonText: "Custom Week",slotLabelFormat: {weekday: "long",// month: 'numeric',// day: 'numeric',omitCommas: true,},},customTimeLineMonth: {type: "resourceTimeline",duration: { month: 1 },slotLabelFormat: {// month: 'numeric',day: "numeric",// omitCommas: true,},},customGridWeek: {type: "timeGridWeek",dayHeaderFormat: {weekday: "long",},slotLabelFormat: {// 左侧时间格式hour: "2-digit",minute: "2-digit",meridiem: "lowercase",hour12: false, // false设置时间为24小时},},},// 切换视图调用的方法datesSet() { },},calendarApi: null,monthEvent: [{id: "1",resourceId: "1",title: "待办",start: "2024-01-04 09:00",end: "2024-01-04 18:00",color: "red",},{resourceId: "2",id: "2",title: "待办",start: "2024-01-15",color: "purple",},{ title: "待办", start: "2024-01-09" },{ title: "待办", start: "2024-01-17" },{ title: "待办", start: "2024-01-07" },{ title: "待办", start: "2024-01-07", color: "pink" },{ title: "待办", start: "2024-01-07" },{ title: "待办", start: "2024-01-07" },{id: "3",resourceId: "number_3",title: "待办",start: "20240111",end: "20240113",color: "blue",extendedProps: {description: "测试测试测试测试",},},{id: 4,title: "待办",start: "2024-01-15",extendedProps: {description: "test test test test test",},},],weekEvent: [{id: "4",resourceId: "4",title: "周待办",start: "2024-01-11",color: "red",},{id: "5",resourceId: "5",title: "待办1",start: "2024-01-04 10:00",end: "2024-01-04 18:00",color: "orange",},],dayDate:'',dialogFormVisible:false,form:{content:'',},selectInfo:{},};},mounted() {setTimeout(() => {this.showFullcalendar = false;this.$nextTick(() => {this.calendarApi = this.$refs.fullCalendar.getApi();this.title = this.calendarApi.view.title;this.getDtata();});}, 1000);},watch: {// 切换视图显示不同的事件"calendarApi.view.type"(newVal) {this.getDtata();},},methods: {// 监听用户选择的时间段,当用户选择了一段时间后会触发该回调,可以在这里处理创建新的日程。handleDateSelect(selectInfo) {console.log('selectInfo: ', selectInfo);this.selectInfo = selectInfo;this.form.content = '';// 用户选择了一个日期范围时触发this.dialogFormVisible = true;},// 用户拖动移动事件时触发handleEventDrop(dropInfo) {console.log('dropInfo: ', dropInfo);const updatedEvent = { ...dropInfo.event };updatedEvent.start = dropInfo.revertDuration ? dropInfo.oldEvent.start : dropInfo.event.start;updatedEvent.end = dropInfo.event.end;// 更新服务器上的事件或者重新排序你的事件数组// 示例:this.updateEventOnServer(updatedEvent);// 如果是在内存中维护事件,则更新本地数据const index = this.events.findIndex(e => e.id === updatedEvent.id);if (index !== -1) {this.events.splice(index, 1, updatedEvent);}},// 用户调整事件长度时触发handleEventResize(resizeInfo) {console.log('resizeInfo: ', resizeInfo);const updatedEvent = { ...resizeInfo.event };updatedEvent.end = resizeInfo.event.end;// 同样更新服务器或本地数据// 示例:this.updateEventOnServer(updatedEvent);const index = this.events.findIndex(e => e.id === updatedEvent.id);if (index !== -1) {this.events.splice(index, 1, updatedEvent);}},getDtata() {setTimeout(() => {this.calendarOptions.events =this.calendarApi.view.type === "dayGridMonth"? this.monthEvent: this.weekEvent;}, 200);},// 点击更多more(e) { console.log('more ', e)},//确认弹框按钮navConfirm(){this.dialogFormVisible = false;if (this.form.content) {this.calendarOptions.events.push({title: this.form.content,start: this.selectInfo.startStr,end: this.selectInfo.endStr,});// 更新日历视图以显示新添加的事件this.$refs.fullCalendar.getApi().addEvent({  //等同于 this.calendarApi.addEventtitle: this.form.content,start: this.selectInfo.startStr,end: this.selectInfo.endStr,});}},// 增加事件addEvent() {this.form.content = '';this.dialogFormVisible = true;// this.monthEvent},//点击日历中的某一日程handleEventClick(clickInfo) {console.log('clickInfo:', clickInfo);// 用户点击事件时触发,用于编辑或删除事件const event = clickInfo.event;console.log('Clicked on:', event.title);// 这里可以弹出模态框进行编辑或调用删除函数等操作},// 单击事件(日历中的某一天)handleDateClick(e) {this.dayDate = e.dateStr;if (e.dateStr !== prev) {clickCount = 0;}clickCount += 1;prev = e.dateStr;setTimeout(() => {if (clickCount === 2) {console.log("db click");} else if (clickCount === 1) {console.log("one click");}clickCount = 0;}, 300);},// 切换prev() {this.calendarApi.prev();this.title = this.calendarApi.view.title;},next() {this.calendarApi.next();this.title = this.calendarApi.view.title;},// 今天today(date, jsEvent, view) {// if (this.type === "timeline") {//   this.calendarApi.changeView("customTimeLineWeek");// } else {//   this.calendarApi.changeView("customGridWeek");// }this.calendarApi.today();this.title = this.calendarApi.view.title;this.calendarApi.changeView("timeGridDay");// this.calendarApi.today();// this.title = this.calendarApi.view.title;},// 月month() {if (this.type === "timeline") {this.calendarApi.changeView("customTimeLineMonth");} else {this.calendarApi.changeView("dayGridMonth");}this.calendarApi.today();this.title = this.calendarApi.view.title;},// 周week() {if (this.type === "timeline") {this.calendarApi.changeView("customTimeLineWeek");} else {this.calendarApi.changeView("customGridWeek");}this.calendarApi.today();this.title = this.calendarApi.view.title;},// 天day() {this.calendarApi.today();this.title = this.calendarApi.view.title;},// 查询search() {this.calendarApi.changeView("dayGrid", {start: "2022-07-07",end: "2022-07-09",});},// 选择时间线、日程handleType() {if (this.type === "timeline") {this.calendarApi.changeView("customTimeLineMonth");this.calendarOptions.slotLabelFormat = null;} else {this.calendarApi.changeView("dayGridMonth");}},},};
</script>
<style scoped>.demo-app {display: flex;min-height: 100%;font-family: Arial, Helvetica Neue, Helvetica, sans-serif;font-size: 14px;}.demo-app-sidebar {width: 300px;line-height: 1.5;background: #eaf9ff;border-right: 1px solid #d3e2e8;}.demo-app-sidebar-section {padding: 2em;}.demo-app-main {flex-grow: 1;padding: 3em;}.fc {/* the calendar root */max-width: 1100px;margin: 0 auto;}.fc-toolbar {width: 100%;margin: 30px auto;display: flex;flex: 1;justify-content: space-around;align-content: center;}.fc-center {/* height: 40px; */display: flex;align-content: center;}.fc-center .title {font-size: 16px;padding: 0 15px;font-weight: 700;/* height: 40px; *//* line-height: 40px; */}
</style>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/416364.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

算法笔记(动态规划入门题)

1.找零钱 int coinChange(int* coins, int coinsSize, int amount) {int dp[amount 1];memset(dp,-1,sizeof(dp));dp[0] 0;for (int i 1; i < amount; i)for (int j 0; j < coinsSize; j)if (coins[j] < i && dp[i - coins[j]] ! -1)if (dp[i] -1 || dp[…

springCloud使用apache的http类和RestTemplate以及Eureka

使用apache的&#xff1a; package com.csgholding.pvgpsp.eqp.util;import com.esotericsoftware.minlog.Log; import org.apache.commons.collections4.MapUtils; import org.apache.http.HttpEntity; import org.apache.http.client.config.RequestConfig; import org.apac…

计算机毕业设计-----SSH超市便利店综合管理系统

项目介绍 便利店管理系统共分为两个角色&#xff1a;管理员和销售人员 销售员角色包含以下功能&#xff1a; 销售员登录,管理销售记录等功能。 管理员角色包含以下功能&#xff1a; 管理员角色登录,销售员管理,商品管理,采购管理,库存管理,销售记录管理,成本报表统计,收入报…

全面了解网络性能监测:从哪些方面进行监测?

目录 摘要 引言 CPU内存监控 磁盘监控 网络监控 GPU监控 帧率监控 总结 摘要 本文介绍了网络性能监测的重要性&#xff0c;并详细介绍了一款名为克魔助手的应用开发工具&#xff0c;该工具提供了丰富的性能监控功能&#xff0c;包括CPU、内存、磁盘、网络等指标的实时…

Pytest插件pytest-django让Django测试更高效

在Django应用开发中&#xff0c;测试是确保应用质量的关键环节。然而&#xff0c;Django自带的测试框架并非总能满足开发者的需求&#xff0c;而Pytest插件 pytest-django 则为我们提供了更为灵活、强大的测试工具。本文将深入介绍 pytest-django 插件的基本用法和实际案例&…

《WebKit 技术内幕》之四(3): 资源加载和网络栈

3. 网络栈 3.1 WebKit的网络设施 WebKit的资源加载其实是交由各个移植来实现的&#xff0c;所以WebCore其实并没有什么特别的基础设施&#xff0c;每个移植的网络实现是非常不一样的。 从WebKit的代码结构中可以看出&#xff0c;网络部分代码的确比较少的&#xff0c;它们都在…

elementUI+el-upload 上传、下载、删除文件以及文件展示列表自定义为表格展示

Upload 上传组件的使用 官方文档链接使用el-upload组件上传文件 具体参数说明&#xff0c;如何实现上传、下载、删除等功能获取文件列表进行file-list格式匹配代码 文件展示列表自定义为表格展示 使用的具体参数说明文件大小展示问题&#xff08;KB/MB&#xff09;文件下载代码…

01-开始Rust之旅

1. 下载Rust 官方推荐使用 rustup 下载 Rust&#xff0c;这是一个管理 Rust 版本和相关工具的命令行工具。下载时需要连接互联网。 这边提供了离线安装版本。本人学习的机器环境为&#xff1a; ubuntu x86_64&#xff0c;因此选用第②个工具链&#xff1b; 1. rust-1.75.0-x86_…

INTEWORK—PET 汽车软件持续集成平台

产品概述 INTEWORK-PET-CI是经纬恒润自主研发的汽车软件持续集成&持续交付平台&#xff0c;在传统的持续集成基础上深化了研运一体化&#xff08;DevOps&#xff09;的概念&#xff0c;将嵌入式软件中的拉取代码、检查、构建、测试、版本管理以及发布交付等环节串联起来&am…

Red Hat Enterprise Linux 6.10 安装图解

引导和开始安装 选择倒计时结束前&#xff0c;通过键盘上下键选择下图框选项&#xff0c;启动图形化安装过程。需要注意的不同主板默认或者自行配置的固件类型不一致&#xff0c;引导界面有所不同。也就是说使用UEFI和BIOS的安装引导界面是不同的&#xff0c;如图所示。若手动调…

市场复盘总结 20240119

仅用于记录当天的市场情况&#xff0c;用于统计交易策略的适用情况&#xff0c;以便程序回测 短线核心&#xff1a;不参与任何级别的调整&#xff0c;采用龙空龙模式 昨日主题投资 连板进级率 11/39 28.2% 二进三&#xff1a; 进级率低 43% 最常用的二种方法&#xff1a; 方…

Tensorflow2.0笔记 - 不使用layer方式,简单的MNIST训练

本笔记不使用layer相关API&#xff0c;搭建一个三层的神经网络来训练MNIST数据集。 前向传播和梯度更新都使用最基础的tensorflow API来做。 import tensorflow as tf from tensorflow import keras from tensorflow.keras import datasets import numpy as npdef load_mnist(…