前言

因为要做签到,所以要写了个日历。

只有基础的日历,签到需要自行实现。

(我等下也要实现签到了…)

相关学习推荐:微信小程序开发教程

效果图

wxml


    
      

        
            {{ item }}
        
        
            {{ item.day }}
        

      
    
  
登录后复制

wxss

.calendar{
   margin-top: 10%;}.month{
      display: flex;
      flex-flow: row wrap;
      font-size: 1.1rem;  }.item{
      width: 14.28%;
      text-align: center;
      line-height: 3rem;}.othe{
   color: grey}
登录后复制

js

// pages/sing_in/sing_in.jsPage({
  data: {
    dateData: [],
    isSignin: false,
    week: ['日','一','二','三','四','五','六'],
  },
  onLoad: function (options) {
      this.initCurrMonthData()
  },
  /**
  * year string 年  如:2020 
  * month string 月 如: 5
  * return array 所有天数 如:[1,2,3...,31]
  **/
  monthDays(year,month){ 
     let days_count = new Date(year,month,0).getDate() //月总天数 如:31
     let days = []; //存放月的天数
     for(let i = 1; i <= days_count; i++)
     days.push(i)
     return days;
  },
  //初始化当月数据
  initCurrMonthData(){
     let currDate = new Date(); //当前日期
     let currMonthDays =  this.monthDays(currDate.getFullYear(),currDate.getMonth() + 1) //当月 +1是因为月从0开始  只有0-11
     let lastMonthDays = this.monthDays(currDate.getFullYear(),currDate.getMonth() ) //上个月
     let currFirstWeek = new Date(currDate.getFullYear(),currDate.getMonth() - 1, 1).getDay() + 1;   //这个月的1号是星期几  -1是因从0开始 
     //月最后一天是星期几

     let dateData = [];
     dateData = currMonthDays.map(val => this.formatDay(val)) //当月的数据

     for(let i = 0; i < currFirstWeek xss=removed xss=removed xss=removed formatDay(day,type = 'curr'> 登录后复制 

相关学习推荐:微信公众号开发教程

以上就是微信小程序实现签到的日历功能的详细内容,更多请关注慧达安全导航其它相关文章!

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部