当前位置:   article > 正文

记录-Vue移动端日历设计与实现

vue做一个日历并且可以记录事件

这里给大家分享我在网上总结出来的一些知识,希望对大家有所帮助

工作中遇到一个需求是根据日历查看某一天/某一周/某一月的睡眠报告,但是找了好多日历组件都不是很符合需求,只好自己手写一个日历组件,顺便记录一下。

先看看UI给的设计图和,需求是有数据的日期做标记,可以查看某一周/某一月的数据,周数据不用自定义,就按照日历上的周数据截取.

实现效果

1.规划dom部分区块划分

2.页面实现

选择月份和选择年份与日期做了条件渲染,切换方式是点击顶部时间切换选项

  1. <template>
  2. <div class="calendar">
  3. <div class="date-top">
  4. <div class="left" @click="dateOperate('down')">
  5. <div></div>
  6. </div>
  7. <div class="time" @click="selectDate">{{ date.join("/") }}</div>
  8. <div class="right" @click="dateOperate('up')">
  9. <div></div>
  10. </div>
  11. </div>
  12. <!-- 日期列表 -->
  13. <div class="date-list" v-if="show === 'date'">
  14. <div class="date-content">
  15. <!-- 日历头 -->
  16. <div v-for="item in header" :key="item">
  17. {{ item }}
  18. </div>
  19. <!-- 日列表 -->
  20. <div
  21. v-for="(s, k) in dayList"
  22. :class="[
  23. 'date-item',
  24. s.month !== date[1] ? 'other-day' : '',
  25. s.day === date[2] && s.month === date[1] ? 'today' : '',
  26. ]"
  27. :key="s + '-' + k"
  28. @click="selectDay(s)"
  29. >
  30. {{ s.day }}
  31. <div
  32. :class="[
  33. 'check',
  34. haveList.includes(`${s.year}-${s.month}-${s.day}`) ? 'have' : '',
  35. ]"
  36. ></div>
  37. </div>
  38. </div>
  39. <!-- 操作栏 -->
  40. <div class="date-btn">
  41. <div
  42. class="btn-item"
  43. v-for="k in weeks + 1"
  44. :key="k"
  45. @click="weekReport(k)"
  46. >
  47. {{ k === 1 ? "" : "看周报" }}
  48. </div>
  49. </div>
  50. </div>
  51. <!-- 月份列表 -->
  52. <div class="month-list" v-else-if="show === 'month'">
  53. <div
  54. :class="date[1] == i ? 'month-item active' : 'month-item'"
  55. v-for="i in 12"
  56. :key="i"
  57. @click="selectMonth(i)"
  58. >
  59. {{ i }}月
  60. </div>
  61. </div>
  62. <!-- 年份列表 -->
  63. <div
  64. class="year-list"
  65. v-else
  66. @touchmove="touchMove"
  67. @touchstart="touchStart"
  68. >
  69. <div
  70. :class="date[0] === i ? 'month-item active' : 'month-item'"
  71. v-for="i in yearList"
  72. :key="i"
  73. @click="selectYear(i)"
  74. >
  75. {{ i }}
  76. </div>
  77. </div>
  78. <!-- 底部操作栏 -->
  79. <div class="date-bottom">
  80. <div class="b-left">
  81. <div class="tab"></div>
  82. <div class="totip">代表有睡眠报告</div>
  83. </div>
  84. <div class="b-right">
  85. <div class="cancel" @click="cancel">取消</div>
  86. <div class="m-report" @click="changeReport">看月报</div>
  87. </div>
  88. </div>
  89. </div>
  90. </template>

css部分

  1. <style lang="scss" scoped>
  2. .calendar {
  3. width: 100%;
  4. background-color: #fff;
  5. .date-top {
  6. width: 100%;
  7. padding: 20px;
  8. display: flex;
  9. justify-content: space-around;
  10. align-items: center;
  11. .left,
  12. .right {
  13. width: 100px;
  14. height: 100%;
  15. display: flex;
  16. flex-direction: column;
  17. justify-content: center;
  18. align-items: center;
  19. div {
  20. width: 20px;
  21. height: 20px;
  22. background-color: #00b7ae;
  23. }
  24. }
  25. .left > div {
  26. clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
  27. }
  28. .right > div {
  29. clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  30. }
  31. .time {
  32. font-size: 38px;
  33. font-weight: 500;
  34. color: #333333;
  35. }
  36. }
  37. .date-list,
  38. .year-list,
  39. .month-list {
  40. width: 100%;
  41. padding: 30px;
  42. height: 540px;
  43. }
  44. .month-list,
  45. .year-list {
  46. display: grid;
  47. grid-template-columns: 1fr 1fr 1fr;
  48. grid-template-rows: auto;
  49. .month-item {
  50. text-align: center;
  51. display: flex;
  52. justify-content: center;
  53. align-items: center;
  54. font-size: 30px;
  55. height: 122px;
  56. }
  57. .month-item:active {
  58. background-color: #eee;
  59. }
  60. .active {
  61. background-color: #dcf4f3;
  62. }
  63. }
  64. .date-list {
  65. padding-top: 0;
  66. display: flex;
  67. .date-content {
  68. flex: 1;
  69. height: 100%;
  70. display: grid;
  71. grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  72. grid-template-rows: auto;
  73. grid-gap: 20px 20px;
  74. div {
  75. height: 100%;
  76. display: flex;
  77. flex-direction: column;
  78. justify-content: center;
  79. align-items: center;
  80. border-radius: 10px;
  81. }
  82. .other-day {
  83. color: rgba($color: #363636, $alpha: 0.6) !important;
  84. }
  85. .today {
  86. background-color: #dcf4f3;
  87. }
  88. .date-item {
  89. font-size: 28px;
  90. font-weight: 400;
  91. color: #363636;
  92. .check {
  93. width: 10px;
  94. height: 10px;
  95. margin-top: 6px;
  96. border-radius: 50%;
  97. background-color: #00b7ae;
  98. opacity: 0;
  99. }
  100. .have {
  101. opacity: 1;
  102. }
  103. }
  104. }
  105. .date-btn {
  106. height: 100%;
  107. width: 80px;
  108. font-size: 22px;
  109. color: #4eb9f5;
  110. display: grid;
  111. grid-template-columns: 1fr;
  112. grid-template-rows: auto;
  113. grid-gap: 20px 20px;
  114. margin-left: 20px;
  115. .btn-item {
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. height: 100%;
  120. }
  121. }
  122. }
  123. .date-bottom {
  124. width: calc(100% - 80px);
  125. display: flex;
  126. justify-content: space-between;
  127. align-content: center;
  128. padding: 20px;
  129. margin: 0 auto;
  130. border-top: 1px solid #eee;
  131. .b-left,
  132. .b-right {
  133. display: flex;
  134. align-items: center;
  135. }
  136. .b-left {
  137. .tab {
  138. width: 27px;
  139. height: 26px;
  140. background: #dcf4f3;
  141. border-radius: 13px;
  142. }
  143. .totip {
  144. font-size: 24px;
  145. font-weight: 400;
  146. color: #363636;
  147. margin-left: 20px;
  148. }
  149. }
  150. .b-right {
  151. .cancel {
  152. font-size: 26px;
  153. font-weight: 500;
  154. color: rgba($color: #000000, $alpha: 0.5);
  155. }
  156. .m-report {
  157. width: 195px;
  158. line-height: 70px;
  159. color: #fff;
  160. font-size: 26px;
  161. background: linear-gradient(196deg, #50dcdc, #18b6b7);
  162. border-radius: 20px;
  163. margin-left: 50px;
  164. text-align: center;
  165. }
  166. }
  167. }
  168. }
  169. </style>

3.接下来是逻辑处理部分

日数据的显示一共42条数据,先获取当前月的总天数,将每个月的天数保存在一个数组里,然后根据传入的参数返回相应的天数, 因为有闰年的存在,2月会是29天,所以做了闰年的判断.然后获取每周的第一天是周几,使用new Date().getDay()获取某一天是周几,返回的是0-7,这里为了方便使用将日历表头用数组保存起来返回的数字刚好是日里头对应的下标,然后根据第一天是周几计算出需要补上个月的几天数据,通过new Date(y,m,0)可以获取到上个月最后一天的,然后向日数据中添加上个月最后几天的数据,补充下个月开始的几天数据,直接使用42减去当月的天数和补充的上个月的天数得到的就是需要补充的下月天数.

月数据的切换显示,前后翻动切换年数据,每年固定都是12月所以就直接写固定值12然后v-for遍历生成dom

年数据的切换显示,每页显示12条数据,保存每页数据的第一条和最后一条用于前后翻页计算显示的数据+12或者-12.

校验选择的月份和已选择的日期是否匹配,因为选择日期后再切换月份有可能切换到的月份没有选择的日期如31日30日29日,所以需要验证是否正确,若是没有的话就当前月的最后一天.

手势操作没有写完整,只写了年份选择的滑动事件逻辑.

为了方便js部分的代码每行都有写详细的注释

自定月选择日期范围只需要修改日期点击事件的逻辑,新增一个参数判断是单日期选择还是选择一个日期范围,在事件处理里面记录点击的两个日期并计算中间的日期保存返回.

  1. <script>
  2. import { formatTime } from "@/utils/format";
  3. export default {
  4. name: "calendar",
  5. props: {
  6. haveList: {
  7. type: Array,
  8. default: [],
  9. },
  10. },
  11. data() {
  12. return {
  13. // 切换日期选择
  14. show: "date",
  15. // 日历头
  16. header: ["日", "一", "二", "三", "四", "五", "六"],
  17. // 选择日期
  18. date: [],
  19. // 年列表
  20. yearList: [],
  21. // 天列表
  22. dayList: [],
  23. // 定时器
  24. timer: null,
  25. // 手势操作数据
  26. move: {
  27. pageX: 0,
  28. fNum: null,
  29. lNum: null,
  30. },
  31. // 第一天是周几
  32. weeks: 0,
  33. };
  34. },
  35. created() {},
  36. mounted() {
  37. let time = new Date();
  38. this.date.push(
  39. time.getFullYear(),
  40. formatTime(time.getMonth() + 1),
  41. formatTime(time.getDate())
  42. );
  43. this.countDay();
  44. },
  45. methods: {
  46. // 计算显示的天数据
  47. countDay() {
  48. console.log("chufa");
  49. let [y, m, d] = this.date;
  50. // 获取第一天是周几
  51. let week = new Date(`${y}/${m}/1`).getDay(),
  52. // 获取当前月的上个月多少天
  53. lastDays = this.getDays(y, m - 1),
  54. // 获取这个月有多少天
  55. days = this.getDays(y, m);
  56. // 计算这个月有多少周
  57. this.weeks = Math.ceil((days - (7 - week)) / 7) + 1;
  58. // 将当前月份的天数生成数组
  59. this.dayList = Array.from({ length: this.getDays(y, m) }, (v, k) => {
  60. return {
  61. day: formatTime(k + 1),
  62. month: m,
  63. year: y,
  64. };
  65. });
  66. // 将本月1日前的数据补齐
  67. for (let i = lastDays; i > lastDays - week; i--) {
  68. this.dayList.unshift({
  69. day: i,
  70. // 如果当前日期是1月补齐的是去年12月的数据
  71. month: +m - 1 === 0 ? 12 : formatTime(+m - 1),
  72. year: +m - 1 === 0 ? y - 1 : y,
  73. });
  74. }
  75. // 计算需要补齐多少天
  76. let length = this.weeks * 7 - this.dayList.length;
  77. console.log("length", week, lastDays, days, this.weeks);
  78. // 将本月最后一天的数据补齐
  79. for (let i = 1; i <= length; i++) {
  80. this.dayList.push({
  81. day: i,
  82. // 如果当前日期是12月补齐的是明年年1月的数据
  83. month: +m + 1 > 12 ? 1 : formatTime(+m + 1),
  84. year: +m + 1 > 12 ? y + 1 : y,
  85. });
  86. }
  87. console.log(this.dayList);
  88. },
  89. // 顶部时间点击事件
  90. selectDate() {
  91. let type = {
  92. month: "year",
  93. date: "month",
  94. };
  95. // 判断点击事件选择月份还是年份
  96. if (this.show !== "year") {
  97. this.show = type[this.show];
  98. }
  99. // 如果是月份就计算dateList数据
  100. if (this.show === "month") {
  101. // 清空每页显示的年份数据
  102. this.yearList.length = 0;
  103. // 计算页面显示的年份数据 每页显示12条数据
  104. for (let i = this.date[0] - 4; i <= this.date[0] + 7; i++) {
  105. this.yearList.push(i);
  106. }
  107. }
  108. },
  109. // 屏幕点击事件
  110. touchStart(val) {
  111. // 获取按下屏幕的x轴坐标
  112. this.move.pageX = val.touches[0].pageX;
  113. },
  114. // 左右滑动切换事件
  115. touchMove(val) {
  116. // 获取按下屏幕移动结束的x轴坐标
  117. let move = val.touches[0].pageX;
  118. clearTimeout(this.timer);
  119. // 判断往左滑动还是往右滑动
  120. // 滑动结束x轴坐标减去最初按下坐标为负数就是往左滑动,翻看当前日期以后的年份
  121. if (move - this.move.pageX < -20) {
  122. console.log("右滑", this.move.lNum);
  123. // 定时器防抖
  124. this.timer = setTimeout(this.changeYear("right"), 100);
  125. }
  126. // 滑动结束x轴坐标减去最初按下坐标为正数就是往右滑动,翻看当前日期以前的年份
  127. if (move - this.move.pageX > 20) {
  128. // 定时器防抖
  129. this.timer = setTimeout(this.changeYear("left"), 100);
  130. }
  131. },
  132. // 年份选择切换
  133. changeYear(type) {
  134. // 清空每页显示的年份数据
  135. this.yearList.length = 0;
  136. if (type === "right") {
  137. // 计算页面显示的年份数据 每页显示12条数据
  138. for (let i = this.move.lNum + 1; i < this.move.lNum + 13; i++) {
  139. this.yearList.push(i);
  140. }
  141. } else {
  142. for (let i = this.move.fNum - 12; i < this.move.fNum; i++) {
  143. this.yearList.push(i);
  144. }
  145. }
  146. },
  147. // 年份点击事件
  148. selectYear(val) {
  149. this.date[0] = val;
  150. this.show = "month";
  151. },
  152. // 月份点击事件
  153. selectMonth(val) {
  154. this.date[1] = val;
  155. this.show = "date";
  156. this.countDay();
  157. this.checkDay();
  158. },
  159. // 校验选择的月份和已选择的日期是否匹配
  160. checkDay() {
  161. // 获取选择的年月有多少天 防止这年不是闰年 就将日期跳转到28号,或者有的月份没有31号就跳到30
  162. let num = this.getDays(this.date[0], this.date[1]);
  163. if (num < this.date[2]) {
  164. this.date.splice(2, 1, num);
  165. }
  166. },
  167. // 日期点击事件
  168. selectDay(val) {
  169. let oVal = this.date[1];
  170. this.date.splice(1, 2, val.month, val.day);
  171. if (val.month !== oVal) {
  172. this.countDay();
  173. }
  174. this.$emit("change", this.date.join("-"));
  175. },
  176. // 获取某个月有多少天
  177. getDays(year, month) {
  178. // 一年中每个月的天数
  179. let days = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
  180. // 判断是不是闰年 229
  181. if (year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0)) {
  182. days[1] = 29;
  183. }
  184. return days[month - 1];
  185. },
  186. //左右按钮点击事件
  187. dateOperate(type) {
  188. let [y, m, d] = this.date;
  189. // 如果是向后翻
  190. if (type === "up") {
  191. // 日期向后翻 切换月份
  192. if (this.show === "date") {
  193. if (+m === 12) {
  194. this.date.splice(0, 1, y + 1);
  195. this.date.splice(1, 1, "01");
  196. } else {
  197. this.date.splice(1, 1, formatTime(+m + 1));
  198. }
  199. // 月份向后翻 切换年份
  200. } else if (this.show === "month") {
  201. this.date.splice(0, 1, y + 1);
  202. // 年份向后翻 重组数据
  203. } else {
  204. this.changeYear("right");
  205. }
  206. // 如果是前后翻
  207. } else {
  208. // 日期向前翻 切换月份
  209. if (this.show === "date") {
  210. if (+m === 1) {
  211. this.date.splice(0, 1, y - 1);
  212. this.date.splice(1, 1, 12);
  213. } else {
  214. this.date.splice(1, 1, formatTime(+m - 1));
  215. }
  216. // 月份向前翻 切换年份
  217. } else if (this.show === "month") {
  218. this.date.splice(0, 1, y - 1);
  219. // 年份向前翻 重组数据
  220. } else {
  221. this.changeYear("left");
  222. }
  223. }
  224. this.countDay();
  225. this.checkDay();
  226. },
  227. // 右侧按钮点击事件
  228. weekReport(i) {
  229. if (i === 1) return;
  230. let arr = [],
  231. // 选择一周的数据 开始
  232. s = 7 * (i - 1) - 7,
  233. // 结束
  234. e = 7 * (i - 1);
  235. // 遍历日数据 截取选择的周数据
  236. for (let k = s; k < e; k++) {
  237. arr.push(
  238. `${this.dayList[k].year}-${this.dayList[k].month}-${this.dayList[k].day}`
  239. );
  240. }
  241. this.$emit("weekReport", arr);
  242. },
  243. // 看月报事件
  244. changeReport() {
  245. let [y, m, d] = this.date;
  246. this.$emit("changeReport", `${y}-${m}`);
  247. },
  248. // 取消事件
  249. cancel() {
  250. this.$emit("cancel");
  251. },
  252. },
  253. computed: {},
  254. watch: {
  255. yearList(nVal, oVal) {
  256. // 记录每一页显示的数据第一位和最后一位 用于计算下一页或者上一页的数据
  257. this.move.fNum = nVal[0];
  258. this.move.lNum = nVal[11];
  259. },
  260. deep: true,
  261. immediate: true,
  262. },
  263. };
  264. </script>

formatTime是给月份和日期小于10的前面加0的方法

本文转载于:

https://juejin.cn/post/7218048201981853757

如果对您有所帮助,欢迎您点个关注,我会定时更新技术文档,大家一起讨论学习,一起进步。

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/97613?site
推荐阅读
相关标签
  

闽ICP备14008679号