• Vue:自定义实现日历表


    简介

    学习了一下关于如何自定义一个日历表。
    参考文章:Vue写一个日历
    在这里插入图片描述

    具体实现

    第一步:打开windows的日历

    可以看到,有如下关键点(暂时忽略农历、节气、节日的备注信息):
    ①年月的信息;
    ②上一个月、下一个月的快捷切换按钮;
    ③周一到周天的行;
    ④深颜色的当前月日期;
    ⑤填充空白的灰色日期(其他月的日期信息);
    在这里插入图片描述

    第二步:分析

    ①计算出显示月份的天,并显示;
    ②切换月份时,重新执行①;
    ③月初、月末的星期几的空白日,需要上一个月下一个月的对应天数补齐;
    ④第一次显示时,今天日期的选中;
    注意2月的天数差距

    a、通常能被4整除的年份是闰年,不能被4整除的年份是平年。如:1988年2008年是闰年;2005年2006年2007年是平年。

    b、如果是世纪年,即整百年能被400整除是闰年,否则是平年。如:2000年就是闰年,1900年就是平年。

    c、闰年的2月有29天,平年的2月只有28天。

    第三步:了解需要使用到的日期API

    getFulleYear(); // 年
    getMonth(); // 月, 0-11
    getDate();  // 日,也就是几号
    getDay();   // 星期几,0-6
    new Date(2022,2,10);  // 实际上就是 2022-03-10
    new Date(2022,2,0);   // 实际上是 2022-02-28, 也就是2月份的最后一天
    new Date(2022,2,-1);  // 实际上是 2022-02-27, 也就是2月份的倒数第二天
    
    var d = new Date();
    d.setTime(new Date(2022,1,1).getTime());   
    d.getFullYear();   // 2022 , setTime 允许传入毫秒数来更改实例对象
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    第四步:代码实现

    <template>
      <div class="calendar-box">
        <div class="calendar-wrapper">
          <div class="calendar-toolbar">
            <div class="prev" @click="prevMonth">上个月</div>
            <div class="current">{{ currentDateStr }}</div>
            <div class="next" @click="nextMonth">下个月</div>
          </div>
    
          <div class="calendar-week">
            <div
              class="week-item calendarBorder"
              v-for="item of weekList"
              :key="item"
            >
              {{ item }}
            </div>
          </div>
          <div class="calendar-inner">
            <div
              class="calendar-item calendarBorder"
              v-for="(item, index) of calendarList"
              :key="index"
              :class="{
                'calendar-item': true,
                calendarBorder: true,
                'calendar-item-hover': !item.disable,
                'calendar-item-disabled': item.disable,
                'calendar-item-checked':
                  dayChecked && dayChecked.value == item.value,
              }"
              @click="handleClickDay(item)"
            >
              {{ item.date }}
            </div>
          </div>
        </div>
      </div>
    </template>
    
    <script>
    export default {
      data() {
        return {
          showYearMonth: {}, // 显示的年月
          calendarList: [], // 用于遍历显示
          shareDate: new Date(), // 享元模式,用来做 日期数据转换 优化
          dayChecked: {}, // 当前选择的天
          weekList: ["一", "二", "三", "四", "五", "六", "日"], // 周
        };
      },
      created() {
        this.initDataFun(); // 初始化数据
      },
      computed: {
        // 显示当前时间
        currentDateStr() {
          let { year, month } = this.showYearMonth;
          return `${year}${this.pad(month + 1)}`;
        },
      },
      methods: {
        //#region 计算日历数据
        // 初始化数据
        initDataFun() {
          // 初始化当前时间
          this.setCurrentYearMonth(); // 设置日历显示的日期(年-月)
          this.createCalendar(); // 创建当前月对应日历的日期数据
          this.getCurrentDay(); // 获取今天
        },
        // 设置日历显示的日期(年-月)
        setCurrentYearMonth(d = new Date()) {
          let year = d.getFullYear();
          let month = d.getMonth();
          let date = d.getDate();
          this.showYearMonth = {
            year,
            month,
            date,
          };
        },
        getCurrentDay(d = new Date()) {
          let year = d.getFullYear();
          let month = d.getMonth();
          let date = d.getDate();
          this.dayChecked = {
            year,
            month,
            date,
            value: this.stringify(year, month, date),
            disable: false
          };
        },
        // 创建当前月对应日历的日期数据
        createCalendar() {
          // 一天有多少毫秒
          const oneDayMS = 24 * 60 * 60 * 1000;
          let list = [];
          let { year, month } = this.showYearMonth;
          
          // #region
          // ---------------仅仅只算某月的天---------------
          //   // 当前月,第一天和最后一天的毫秒数
          //   let begin = new Date(year, month, 1).getTime();
          //   let end = new Date(year, month + 1, 0).getTime();
    
          // ---------------计算某月前后需要填补的天---------------
          // 当前月份第一天是星期几, 0-6
          let firstDay = this.getFirstDayByMonths(year, month);
          // 填充多少天,因为我将星期日放到最后了,所以需要另外调整下
          let prefixDaysLen = firstDay === 0 ? 6 : firstDay - 1;
          // 向前移动之后的毫秒数
          let begin = new Date(year, month, 1).getTime() - oneDayMS * prefixDaysLen;
          // 当前月份最后一天是星期几, 0-6
          let lastDay = this.getLastDayByMonth(year, month);
          // 填充多少天,因为我将星期日放到最后了,所以需要另外调整下
          let suffixDaysLen = lastDay === 0 ? 0 : 7 - lastDay;
          // 向后移动之后的毫秒数
          let end = new Date(year, month + 1, 0).getTime() + oneDayMS * suffixDaysLen;
          // // 计算左侧时间段的循环数
          // let rowNum = Math.ceil((end - begin) / oneDayMS / 7);
          // let newPeriod = [];
          // for (let i = 0; i < rowNum; i++) {
          //   newPeriod.push({});
          // }
          // #endregion
    
          // 填充天
          while (begin <= end) {
            // 享元模式,避免重复 new Date
            this.shareDate.setTime(begin);
            let year = this.shareDate.getFullYear();
            let curMonth = this.shareDate.getMonth();
            let date = this.shareDate.getDate();
            list.push({
              year: year,
              month: curMonth + 1, // 月是从0开始的
              date: date,
              value: this.stringify(year, curMonth, date),
              disable: curMonth !== month,
            });
            begin += oneDayMS;
          }
    
          this.calendarList = list;
        },
        // 格式化时间
        stringify(year, month, date) {
          let str = [year, this.pad(month + 1), this.pad(date)].join("-");
          return str;
        },
        // 对小于 10 的数字,前面补 0
        pad(str) {
          return str < 10 ? `0${str}` : str;
        },
        // 点击上一月
        prevMonth() {
          this.showYearMonth.month--;
          this.recalculateYearMonth(); // 因为 month的变化 会超出 0-11 的范围, 所以需要重新计算
          this.createCalendar(); // 创建当前月对应日历的日期数据
        },
        // 点击下一月
        nextMonth() {
          this.showYearMonth.month++;
          this.recalculateYearMonth(); // 因为 month的变化 会超出 0-11 的范围, 所以需要重新计算
          this.createCalendar(); // 创建当前月对应日历的日期数据
        },
        // 重算:显示的某年某月
        recalculateYearMonth() {
          let { year, month, date } = this.showYearMonth;
    
          let maxDate = this.getDaysByMonth(year, month);
          // 预防其他月跳转到2月,2月最多只有29天,没有30-31
          date = Math.min(maxDate, date);
    
          let instance = new Date(year, month, date);
          this.setCurrentYearMonth(instance);
        },
        // 判断当前月有多少天
        getDaysByMonth(year, month) {
          return new Date(year, month + 1, 0).getDate();
        },
        // 当前月的第一天是星期几
        getFirstDayByMonths(year, month) {
          return new Date(year, month, 1).getDay();
        },
        // 当前月的最后一天是星期几
        getLastDayByMonth(year, month) {
          return new Date(year, month + 1, 0).getDay();
        },
        // #endregion 计算日历数据
    
        // 操作:点击了某天
        handleClickDay(item) {
          if (!item || item.disable) return;
          console.log(item);
          this.dayChecked = item;
        },
      },
    };
    </script>
    
    <style lang="less" scoped>
    @calendarWidth: 637px; // 90 * 7 + 7 * 1
    .calendar-box {
      width: 100vw;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      .calendar-wrapper {
        .calendar-toolbar {
          width: @calendarWidth;
          height: 50px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          .prev,
          .next,
          .current {
            cursor: pointer;
            &:hover {
              color: #438bef;
            }
          }
        }
        .calendar-week {
          width: @calendarWidth;
          border-left: 1px solid #eee;
          display: flex;
          flex-wrap: wrap;
          .week-item {
            width: 90px;
            height: 50px;
            border-top: 1px solid #eee;
          }
        }
        .calendar-inner {
          width: @calendarWidth;
          border-left: 1px solid #eee;
          display: flex;
          flex-wrap: wrap;
          .calendar-item {
            width: 90px;
            height: 60px;
          }
          .calendar-item-hover {
            cursor: pointer;
            &:hover {
              color: #fff;
              background-color: #438bef;
            }
          }
          .calendar-item-disabled {
            color: #acacac;
            cursor: not-allowed;
          }
          .calendar-item-checked {
            color: #fff;
            background-color: #438bef;
          }
        }
        .calendarBorder {
          display: flex;
          justify-content: center;
          align-items: center;
          border-bottom: 1px solid #eee;
          border-right: 1px solid #eee;
        }
      }
    }
    </style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
  • 相关阅读:
    智能传感器有何不同?工业网关能用吗?
    微信小程序分享、转发朋友、分享朋友圈使用整理
    Salesforce-Visualforce-1.概要(Get Started with Visualforce)
    PHP毕业设计项目作品源码选题(13)学校排课和选课系统毕业设计毕设作品开题报告
    Python 全栈系列202 使用Mongo和Redis提供简单查询的服务
    测吧(北京)科技有限公司项目总监王雪冬一行访问计算机学院探讨合作
    艺术与AI:科技与艺术的完美融合
    Docker-compose
    ZZNUOJ_C语言1123:最佳校友(附完整源码)
    pymssql 保存进db Unclosed quotation mark after the character string
  • 原文地址:https://blog.csdn.net/weixin_44136505/article/details/125005672