<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
工作中遇到一個需求是根據日曆檢視某一天/某一週/某一月的睡眠報告,但是找了好多日曆元件都不是很符合需求,只好自己手寫一個日曆元件,順便記錄一下。
先看看UI給的設計圖和,需求是有資料的日期做標記,可以檢視某一週/某一月的資料,周資料不用自定義,就按照日曆上的周資料擷取.
實現效果
1.規劃dom部分割區塊劃分
2.頁面實現
選擇月份和選擇年份與日期做了條件渲染,切換方式是點選頂部時間切換選項
<template> <div class="calendar"> <div class="date-top"> <div class="left" @click="dateOperate('down')"> <div></div> </div> <div class="time" @click="selectDate">{{ date.join("/") }}</div> <div class="right" @click="dateOperate('up')"> <div></div> </div> </div> <!-- 日期列表 --> <div class="date-list" v-if="show === 'date'"> <div class="date-content"> <!-- 日曆頭 --> <div v-for="item in header" :key="item"> {{ item }} </div> <!-- 日列表 --> <div v-for="(s, k) in dayList" :class="[ 'date-item', s.month !== date[1] ? 'other-day' : '', s.day === date[2] && s.month === date[1] ? 'today' : '', ]" :key="s + '-' + k" @click="selectDay(s)" > {{ s.day }} <div :class="[ 'check', haveList.includes(`${s.year}-${s.month}-${s.day}`) ? 'have' : '', ]" ></div> </div> </div> <!-- 操作欄 --> <div class="date-btn"> <div class="btn-item" v-for="k in weeks + 1" :key="k" @click="weekReport(k)" > {{ k === 1 ? "" : "看週報" }} </div> </div> </div> <!-- 月份列表 --> <div class="month-list" v-else-if="show === 'month'"> <div :class="date[1] == i ? 'month-item active' : 'month-item'" v-for="i in 12" :key="i" @click="selectMonth(i)" > {{ i }}月 </div> </div> <!-- 年份列表 --> <div class="year-list" v-else @touchmove="touchMove" @touchstart="touchStart" > <div :class="date[0] === i ? 'month-item active' : 'month-item'" v-for="i in yearList" :key="i" @click="selectYear(i)" > {{ i }} </div> </div> <!-- 底部操作欄 --> <div class="date-bottom"> <div class="b-left"> <div class="tab"></div> <div class="totip">代表有睡眠報告</div> </div> <div class="b-right"> <div class="cancel" @click="cancel">取消</div> <div class="m-report" @click="changeReport">看月報</div> </div> </div> </div> </template>
css部分
<style lang="scss" scoped> .calendar { width: 100%; background-color: #fff; .date-top { width: 100%; padding: 20px; display: flex; justify-content: space-around; align-items: center; .left, .right { width: 100px; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; div { width: 20px; height: 20px; background-color: #00b7ae; } } .left > div { clip-path: polygon(0% 50%, 100% 0%, 100% 100%); } .right > div { clip-path: polygon(0% 0%, 100% 50%, 0% 100%); } .time { font-size: 38px; font-weight: 500; color: #333333; } } .date-list, .year-list, .month-list { width: 100%; padding: 30px; height: 540px; } .month-list, .year-list { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto; .month-item { text-align: center; display: flex; justify-content: center; align-items: center; font-size: 30px; height: 122px; } .month-item:active { background-color: #eee; } .active { background-color: #dcf4f3; } } .date-list { padding-top: 0; display: flex; .date-content { flex: 1; height: 100%; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr; grid-template-rows: auto; grid-gap: 20px 20px; div { height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; border-radius: 10px; } .other-day { color: rgba($color: #363636, $alpha: 0.6) !important; } .today { background-color: #dcf4f3; } .date-item { font-size: 28px; font-weight: 400; color: #363636; .check { width: 10px; height: 10px; margin-top: 6px; border-radius: 50%; background-color: #00b7ae; opacity: 0; } .have { opacity: 1; } } } .date-btn { height: 100%; width: 80px; font-size: 22px; color: #4eb9f5; display: grid; grid-template-columns: 1fr; grid-template-rows: auto; grid-gap: 20px 20px; margin-left: 20px; .btn-item { display: flex; justify-content: center; align-items: center; height: 100%; } } } .date-bottom { width: calc(100% - 80px); display: flex; justify-content: space-between; align-content: center; padding: 20px; margin: 0 auto; border-top: 1px solid #eee; .b-left, .b-right { display: flex; align-items: center; } .b-left { .tab { width: 27px; height: 26px; background: #dcf4f3; border-radius: 13px; } .totip { font-size: 24px; font-weight: 400; color: #363636; margin-left: 20px; } } .b-right { .cancel { font-size: 26px; font-weight: 500; color: rgba($color: #000000, $alpha: 0.5); } .m-report { width: 195px; line-height: 70px; color: #fff; font-size: 26px; background: linear-gradient(196deg, #50dcdc, #18b6b7); border-radius: 20px; margin-left: 50px; text-align: center; } } } } </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部分的程式碼每行都有寫詳細的註釋
自定月選擇日期範圍只需要修改日期點選事件的邏輯,新增一個引數判斷是單日期選擇還是選擇一個日期範圍,在事件處理裡面記錄點選的兩個日期並計算中間的日期儲存返回.
import { formatTime } from "@/utils/format"; export default { name: "calendar", props: { haveList: { type: Array, default: [], }, }, data() { return { // 切換日期選擇 show: "date", // 日曆頭 header: ["日", "一", "二", "三", "四", "五", "六"], // 選擇日期 date: [], // 年列表 yearList: [], // 天列表 dayList: [], // 定時器 timer: null, // 手勢運算元據 move: { pageX: 0, fNum: null, lNum: null, }, // 第一天是周幾 weeks: 0, }; }, created() {}, mounted() { let time = new Date(); this.date.push( time.getFullYear(), formatTime(time.getMonth() + 1), formatTime(time.getDate()) ); this.countDay(); }, methods: { // 計算顯示的天資料 countDay() { console.log("chufa"); let [y, m, d] = this.date; // 獲取第一天是周幾 let week = new Date(`${y}/${m}/1`).getDay(), // 獲取當前月的上個月多少天 lastDays = this.getDays(y, m - 1), // 獲取這個月有多少天 days = this.getDays(y, m); // 計算這個月有多少周 this.weeks = Math.ceil((days - (7 - week)) / 7) + 1; // 將當前月份的天數生成陣列 this.dayList = Array.from({ length: this.getDays(y, m) }, (v, k) => { return { day: formatTime(k + 1), month: m, year: y, }; }); // 將本月1日前的資料補齊 for (let i = lastDays; i > lastDays - week; i--) { this.dayList.unshift({ day: i, // 如果當前日期是1月補齊的是去年12月的資料 month: +m - 1 === 0 ? 12 : formatTime(+m - 1), year: +m - 1 === 0 ? y - 1 : y, }); } // 計算需要補齊多少天 let length = this.weeks * 7 - this.dayList.length; console.log("length", week, lastDays, days, this.weeks); // 將本月最後一天的資料補齊 for (let i = 1; i <= length; i++) { this.dayList.push({ day: i, // 如果當前日期是12月補齊的是明年年1月的資料 month: +m + 1 > 12 ? 1 : formatTime(+m + 1), year: +m + 1 > 12 ? y + 1 : y, }); } console.log(this.dayList); }, // 頂部時間點選事件 selectDate() { let type = { month: "year", date: "month", }; // 判斷點選事件選擇月份還是年份 if (this.show !== "year") { this.show = type[this.show]; } // 如果是月份就計算dateList資料 if (this.show === "month") { // 清空每頁顯示的年份資料 this.yearList.length = 0; // 計算頁面顯示的年份資料 每頁顯示12條資料 for (let i = this.date[0] - 4; i <= this.date[0] + 7; i++) { this.yearList.push(i); } } }, // 螢幕點選事件 touchStart(val) { // 獲取按下螢幕的x軸座標 this.move.pageX = val.touches[0].pageX; }, // 左右滑動切換事件 touchMove(val) { // 獲取按下螢幕移動結束的x軸座標 let move = val.touches[0].pageX; clearTimeout(this.timer); // 判斷往左滑動還是往右滑動 // 滑動結束x軸座標減去最初按下座標為負數就是往左滑動,翻看當前日期以後的年份 if (move - this.move.pageX < -20) { console.log("右滑", this.move.lNum); // 定時器防抖 this.timer = setTimeout(this.changeYear("right"), 100); } // 滑動結束x軸座標減去最初按下座標為正數就是往右滑動,翻看當前日期以前的年份 if (move - this.move.pageX > 20) { // 定時器防抖 this.timer = setTimeout(this.changeYear("left"), 100); } }, // 年份選擇切換 changeYear(type) { // 清空每頁顯示的年份資料 this.yearList.length = 0; if (type === "right") { // 計算頁面顯示的年份資料 每頁顯示12條資料 for (let i = this.move.lNum + 1; i < this.move.lNum + 13; i++) { this.yearList.push(i); } } else { for (let i = this.move.fNum - 12; i < this.move.fNum; i++) { this.yearList.push(i); } } }, // 年份點選事件 selectYear(val) { this.date[0] = val; this.show = "month"; }, // 月份點選事件 selectMonth(val) { this.date[1] = val; this.show = "date"; this.countDay(); this.checkDay(); }, // 校驗選擇的月份和已選擇的日期是否匹配 checkDay() { // 獲取選擇的年月有多少天 防止這年不是閏年 就將日期跳轉到28號,或者有的月份沒有31號就跳到30號 let num = this.getDays(this.date[0], this.date[1]); if (num < this.date[2]) { this.date.splice(2, 1, num); } }, // 日期點選事件 selectDay(val) { let oVal = this.date[1]; this.date.splice(1, 2, val.month, val.day); if (val.month !== oVal) { this.countDay(); } this.$emit("change", this.date.join("-")); }, // 獲取某個月有多少天 getDays(year, month) { // 一年中每個月的天數 let days = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; // 判斷是不是閏年 2月29天 if (year % 4 === 0 && (year % 100 !== 0 || year % 400 === 0)) { days[1] = 29; } return days[month - 1]; }, //左右按鈕點選事件 dateOperate(type) { let [y, m, d] = this.date; // 如果是向後翻 if (type === "up") { // 日期向後翻 切換月份 if (this.show === "date") { if (+m === 12) { this.date.splice(0, 1, y + 1); this.date.splice(1, 1, "01"); } else { this.date.splice(1, 1, formatTime(+m + 1)); } // 月份向後翻 切換年份 } else if (this.show === "month") { this.date.splice(0, 1, y + 1); // 年份向後翻 重組資料 } else { this.changeYear("right"); } // 如果是前後翻 } else { // 日期向前翻 切換月份 if (this.show === "date") { if (+m === 1) { this.date.splice(0, 1, y - 1); this.date.splice(1, 1, 12); } else { this.date.splice(1, 1, formatTime(+m - 1)); } // 月份向前翻 切換年份 } else if (this.show === "month") { this.date.splice(0, 1, y - 1); // 年份向前翻 重組資料 } else { this.changeYear("left"); } } this.countDay(); this.checkDay(); }, // 右側按鈕點選事件 weekReport(i) { if (i === 1) return; let arr = [], // 選擇一週的資料 開始 s = 7 * (i - 1) - 7, // 結束 e = 7 * (i - 1); // 遍歷日資料 擷取選擇的周資料 for (let k = s; k < e; k++) { arr.push( `${this.dayList[k].year}-${this.dayList[k].month}-${this.dayList[k].day}` ); } this.$emit("weekReport", arr); }, // 看月報事件 changeReport() { let [y, m, d] = this.date; this.$emit("changeReport", `${y}-${m}`); }, // 取消事件 cancel() { this.$emit("cancel"); }, }, computed: {}, watch: { yearList(nVal, oVal) { // 記錄每一頁顯示的資料第一位和最後一位 用於計算下一頁或者上一頁的資料 this.move.fNum = nVal[0]; this.move.lNum = nVal[11]; }, deep: true, immediate: true, }, };
formatTime是給月份和日期小於10的前面加0的方法
初次寫日曆元件,寫的比較潦草,也沒有寫動態效果,程式碼可以優化的地方還有很多,可能大家還有比我這更簡單的方法,歡迎大家指出,互相交流.
到此這篇關於Vue實現行動端日曆的範例程式碼的文章就介紹到這了,更多相關Vue日曆內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45