Skip to content

zhuman90/wx_calendar

Repository files navigation

Codacy Badge Dependency status Build Status GitHub issues GitHub license

小程序日历

思路分析

要实现一个简单的日历,需要先知道几个值:

  • 每月有多少天

  • 每月第一天、最后一天各星期几

  • 每月1号之前应有多少天属于上一个月

  • 每月最后一天之后应有多少天属于下一个月

每月最多31天,最少28天。

日历模板引入

日历模板面板支持 手势左右滑动

提供 template 模板引入

1. 引入wxmlwxss

// example.wxml
<import src="../../template/calendar/index.wxml"/>
<view class="calendar-wrap">
   <template is="calendar" data="{{...calendar}}" />
</view>
/* example.wxss */
@import '../../template/calendar/index.wxss';

2. 日历组件初始化

import initCalendar from '../../template/calendar/index';
const conf = {
  onShow: function() {
    initCalendar(); // 使用默认配置初始化日历
  }
};
Page(conf);

3. 日历组件配置

initCalendar() 可传入自定义配置

  import initCalendar from '../../template/calendar/index';

  const conf = { 
    multi: true, // 是否开启多选,
    disablePastDay: true, // 是否禁选过去日期
    /**
     * 选择日期后执行的事件
     * @param { object } currentSelect 当前点击的日期
     * @param { array } allSelectedDays 选择的所有日期(当mulit为true时,才有allSelectedDays参数)
     */
    afterTapDay: (currentSelect, allSelectedDays) => {},
    /**
     * 日期点击事件(此事件会完全接管点击事件)
     * @param { object } currentSelect 当前点击的日期
     * @param { object } event 日期点击事件对象
     */
    onTapDay(currentSelect, event) {},
    /**
     * 日历初次渲染完成后触发事件,如设置事件标记
     */
    afterCalendarRender() {},
  }

  initCalendar(conf);

4. jumpToToday(),跳转至今天;

5. 待办事项

5.1 设置日期待办事项标记 setTodoLabels
  import { setTodoLabels } from '../../template/calendar/index';

  setTodoLabels({
    pos: 'bottom',
    dotColor: '#40',
    days: [{
      year: 2018,
      month: 5,
      day: 12,
    }, {
      year: 2018,
      month: 5,
      day: 15,
    }],
  });
5.2 删除指定日期待办事项标记 deleteTodoLabels
  import { deleteTodoLabels } from '../../template/calendar/index';

  deleteTodoLabels([{
    year: 2018,
    month: 5,
    day: 12,
  }, {
    year: 2018,
    month: 5,
    day: 15,
  }]);
5.3 清空所有日期待办事项标记 clearTodoLabels()

6. 周月视图切换 switchView('week'),默认值为'month';

  import { switchView } from '../../template/calendar/index';
  // 切换为周视图
  switchView('week');

  // 切换为月视图
  switchView();
  // 或者
  switchView('month');

日历选择器模板引入

日历模板面板支持 手势左右滑动

template 带有 input 输入框,不影响模板的使用,可配置隐藏;

日期选择 input 组件支持直接输入指定日期;

1. 引入wxmlwxss

// example.wxml
<import src="../../template/datepicker/index.wxml"/>

<view class="datepicker-box">
	<template is="datepicker" data="{{...datepicker}}" />
</view>
/* example.wxss */
@import '../../template/datepicker/index.wxss';

2. 日期选择器初始化

import initDatepicker from '../../template/datepicker/index';
const conf = {
  onShow: function() {
    initDatepicker(); // 使用默认配置初始化日历选择器
  },
};
Page(conf);

3. 日期选择器配置

  import initDatepicker from '../../template/datepicker/index';

  const conf = {
    disablePastDay: true, // 是否禁选过去日期
    showInput: false, // 默认为 true
    placeholder: '请选择日期', // input 输入框
    type: 'normal', // [normal 普通单选模式(默认), timearea 时间段选择模式(待开发), multiSelect 多选模式(待完善)]

    /**
     * 选择日期后执行的事件
     * @param { object } currentSelect 当前点击的日期
     */
    afterTapDay: (currentSelect) => {},

    /**
     * 日期点击事件(此事件会完全接管点击事件)
     * @param { object } currentSelect 当前点击的日期
     * @param {object} event 日期点击事件对象
     */
    onTapDay(currentSelect, event) {},
  }

  initDatepicker(conf);

4. jumpToToday(),跳转至今天;

import { getSelectedDay, jumpToToday } from '../../template/datepicker/index';

jumpToToday();

日历模板效果图

日历效果图

日期选择器效果图

日期选择器

About

微信小程序-日历 📅

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%