pmlaogui / wx_calendar

微信小程序-日历 📅

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status GitHub issues Codacy Badge Libraries.io dependency status for GitHub repo GitHub license

小程序日历

引入组件

json 文件中配置组件

{
  "usingComponents": {
    "calendar": "/component/calendar/index"
  }
}

wxml 中引入组件

<calendar calendarConfig="{{calendarConfig}}"></calendar>

自定义配置初始化日历

const conf = {
  data: {
    calendarConfig: {
      // 配置内置主题
      theme: 'elegant'
    }
  },
  doSomeThing() {
    // 调用日历方法
    this.calendar.enableArea(['2018-10-7', '2018-10-28']);
  }
};
Page(conf);

更多自定义配置及功能 请查阅日历文档

效果图

日历效果图

About

微信小程序-日历 📅

License:MIT License


Languages

Language:JavaScript 100.0%