用vue写一个日历


Posted in Javascript onNovember 02, 2020

之前在上家公司做过一个公司人员考勤的东西,里面需要用到日历,当时自己用vue随便写了一个,比较简单,删掉了其他功能的代码,只留下日历,直接看代码

<template>
 <div class="lookForMonth_wrapper">
  <div class="lookForMonth_top">
   <div class="selectDate">
    <div>{{year}} 年 {{month}} 月</div>
    <div class="upDownSelect">
     <div class="upDownSelect_item" @click="dateUp"></div>
     <div class="upDownSelect_item" @click="dateDown"></div>
    </div>
   </div>
  </div>
  <div class="calendar" :style="calendarStyle">
   <div v-for="(item,index) in calendarData" class="calendar_item" :key='index' :class="{ash:item.color==='ash',date:index>6&&item.color!=='ash'}">
    <p class="dateEdit">{{item.label}}<i class="el-icon-edit-outline" v-if="item.color!=='ash'&&index>=7"></i></p>
    <p v-if='index>6'>上班</p> // 打工人
   </div>
  </div>
 </div>
</template>
<script>
export default {
 name: "lookForMonth",
 data: () => {
 return {
  calendarData: [{label:"日"},{label: "一"}, {label:"二"},{label: "三"},{label: "四"},{label: "五"},{label: "六"}], //日历循环渲染数据
  year: 0, //当前日期年
  month: 0, //当前日期月数
  date: 0, //当前日期号数
  day: -1, //当前星期几
 };
 },
 filters:{
 },
 computed: {
 // 根据当月日期详情更改日历表格高度
 calendarStyle() {
  if (this.calendarData.length > 42) {
  return "height: 701px;";
  } else {
  return "height: 601px;";
  }
 }
 },
 async created(){
 // 获取当前日期数据
 this.getNow();
 // 获取当前月份一号的时间戳
 let firstTime = +new Date(this.year,this.month-1,1,0,0,0)
 this.getCalendarDate(); // 给calendarData添加当月数据
 },
 mounted() {
 },
 methods: {
 // 获取当前时间
 getNow() {
  let now = new Date()
  this.year = +now.getFullYear()
  this.month = +now.getMonth() + 1
  this.date = +now.getDate()
  this.day = +now.getDay()
 },
 // 获取每个月的天数
 monthDay(month) {
  if ([1,3,5,7,8,10,12].includes(month)) {
  return 31
  } else if ([4,6,9,11].includes(month)) {
  return 30
  } else if (month === 2) {
  // 判断当年是否为闰年
  if (
   (this.year % 4 === 0 && this.year % 100 !== 0) ||
   this.year % 400 === 0
  ) {
   return 29
  } else {
   return 28
  }
  }
 },
 // 给calendarData添加当月数据
 getCalendarDate() {
  // 获取当前月份一号星期几
  let firstDay = new Date(this.year + "-" + this.month + "-" + "01").getDay();
  this.calendarData = [{label:"日"},{label: "一"}, {label:"二"},{label: "三"},{label: "四"},{label: "五"},{label: "六"}];
  let num = parseInt(firstDay);
  let nowDays = this.monthDay(this.month);
  let lastMonth = this.month - 1>0?this.month - 1:12;
  let lastDays = this.monthDay(lastMonth);
  // 循环添加上一个月数据
  for (let i = 0; i < num; i++) {
  this.calendarData.push({label:lastDays - num + i + 1,color:'ash'});
  }
  // 循环添加当月数据
  for (let i = 0; i < nowDays; i++) {
  this.calendarData.push({label:i + 1});
  }
  // 循环添加下一个月数据
  if (this.calendarData.length % 7 !== 0) {
  let surplusDay = 7 - (this.calendarData.length % 7);
  for (let i = 0; i < surplusDay; i++) {
   this.calendarData.push({label:i + 1,color:'ash'});
  }
  }
  this.loading = false
 },
 // 将日期调上
 dateUp() {
  this.month--;
  if (this.month <= 0) {
  this.year--;
  this.month = 12;
  }
  this.getCalendarDate(); // 给calendarData添加当月数据
 },
 // 将日期调下
 dateDown() {
  this.month++;
  if (this.month > 12) {
  this.year++;
  this.month = 1;
  }
  this.getCalendarDate(); // 给calendarData添加当月数据
 },
 }
};
</script>
<style lang="scss" scoped>
.lookForMonth_wrapper {
 padding: 20px;
 width: 701px;
 margin: auto;
}
.lookForMonth_top {
 margin-bottom: 20px;
 overflow: hidden;
 .selectTeacher {
 float: left;
 }
 .selectDate {
 height: 30px;
 line-height: 30px;
 float: right;
 display: flex;
 .upDownSelect {
  display: flex;
  flex-direction: column;
  margin-top: -2px;
  margin-left: 5px;
  .upDownSelect_item {
  width: 0;
  height: 0;
  border: 7px solid transparent;
  cursor: pointer;
  }
  .upDownSelect_item:nth-child(1) {
  border-bottom: 7px solid #666;
  margin-bottom: 5px;
  &:hover {
   border-bottom: 7px solid skyblue;
  }
  }
  .upDownSelect_item:nth-child(2) {
  border-top: 7px solid #666;
  &:hover {
   border-top: 7px solid skyblue;
  }
  }
 }
 }
}
/* 日历表样式=======================================↓ */
.calendar {
 width: 701px;
 border-top: 1px solid #ccc;
 border-left: 1px solid #ccc;
 display: flex;
 flex-wrap: wrap;
 box-sizing: border-box;
 .calendar_item {
 box-sizing: border-box;
 width: 100px;
 height: 100px;
 border-right: 1px solid #ccc;
 border-bottom: 1px solid #ccc;
 text-align: center;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 &.date:hover{
  background: #eee;
 }
 .status{
  margin-top: 10px;
  &.textBlue{
  color: blue;
  }
  &.textRed{
  color: brown;
  }
 }
 .el-icon-edit-outline{
  cursor: pointer;
  margin-left: 7px;
 }
 }
 .ash{
 color: gainsboro;
 }
 .dateEdit{
 margin-bottom: 10px;
 }
}
</style>

效果如下:

用vue写一个日历

以上就是利用vue写一个日历的详细内容,更多关于vue 日历的资料请关注三水点靠木其它相关文章!

Javascript 相关文章推荐
jQuery修改CSS伪元素属性的方法
Jul 30 Javascript
jquery插件star-rating.js实现星级评分特效
Apr 15 Javascript
浅析JS原型继承与类的继承
Apr 07 Javascript
js判断主流浏览器类型和版本号的简单实现代码
May 26 Javascript
JS实现简单的tab切换选项卡效果
Sep 21 Javascript
BootStrap Table 获取同行不同列元素的方法
Dec 19 Javascript
jquery ui sortable拖拽后保存位置
Apr 27 jQuery
详解node+express+ejs+bootstrap构建项目
Sep 27 Javascript
微信小程序分享功能之按钮button 边框隐藏和点击隐藏
Jun 14 Javascript
vuejs 动态添加input框的实例讲解
Aug 24 Javascript
解决Vue开发中对话框被遮罩层挡住的问题
Nov 26 Javascript
vue点击按钮实现简单页面的切换
Sep 08 Javascript
在vue中使用vant TreeSelect分类选择组件操作
Nov 02 #Javascript
vant自定义二级菜单操作
Nov 02 #Javascript
JavaScript动态生成表格的示例
Nov 02 #Javascript
JavaScript实现图片放大预览效果
Nov 02 #Javascript
解决antd 表单设置默认值initialValue后验证失效的问题
Nov 02 #Javascript
在antd4.0中Form使用initialValue操作
Nov 02 #Javascript
vue+iview使用树形控件的具体使用
Nov 02 #Javascript
You might like
一步一步学习PHP(3) php 函数
2010/02/15 PHP
PHP下操作Linux消息队列完成进程间通信的方法
2010/07/24 PHP
PHP中header和session_start前不能有输出原因分析
2013/01/11 PHP
PHP+swoole实现简单多人在线聊天群发
2016/01/19 PHP
PHP获取当前系统时间的方法小结
2018/10/03 PHP
浏览器无法运行JAVA脚本的解决方法
2008/01/09 Javascript
jquery cookie插件代码类
2009/05/26 Javascript
Prototype ObjectRange对象学习
2009/07/19 Javascript
让浏览器非阻塞加载javascript的几种方法小结
2011/04/25 Javascript
Javascript中的delete介绍
2012/09/02 Javascript
利用jquery写的左右轮播图特效
2014/02/12 Javascript
修复bash漏洞的shell脚本分享
2014/12/31 Javascript
详细解读AngularJS中的表单验证编程
2015/06/19 Javascript
JS随机调用指定函数的方法
2015/07/01 Javascript
jquery+css3实现会动的小圆圈效果
2016/01/27 Javascript
AngularJS中的过滤器filter用法完全解析
2016/04/22 Javascript
深入理解JQuery中的事件与动画
2016/05/18 Javascript
nodejs入门教程三:调用内部和外部方法示例
2017/04/24 NodeJs
微信小程序开发之map地图实现教程
2017/06/08 Javascript
vue-resource + json-server模拟数据的方法
2017/11/02 Javascript
jQuery niceScroll滚动条错位问题的解决方法
2018/02/03 jQuery
详解JavaScript之ES5的继承
2020/07/08 Javascript
python抓取京东商城手机列表url实例代码
2013/12/18 Python
Python中的测试模块unittest和doctest的使用教程
2015/04/14 Python
Python 比较两个数组的元素的异同方法
2017/08/17 Python
使用EduBlock轻松学习Python编程
2018/10/08 Python
浅谈python函数调用返回两个或多个变量的方法
2019/01/23 Python
Python爬虫爬取电影票房数据及图表展示操作示例
2020/03/27 Python
Numpy中np.max的用法及np.maximum区别
2020/11/27 Python
Css3新特性应用之视觉效果实例
2016/12/12 HTML / CSS
外贸销售员求职的自我评价
2013/11/23 职场文书
单位活动策划方案
2014/08/17 职场文书
科学发展观标语
2014/10/08 职场文书
岗位聘任协议书
2015/09/21 职场文书
python 制作一个gui界面的翻译工具
2021/05/14 Python
Python  lambda匿名函数和三元运算符
2022/04/19 Python