Skip to content

Calendar 日历

此组件用于单个选择日期,范围选择日期等,日历被包裹在底部弹起的容器中。

注意: 此组件与Picker 选择器的日期选择模式有一定的重合之处,区别在于本组件为更专业的日期选择场景,能选择日期范围等。 另外Picker组件的日期模式可以配置更多的参数,如时、分、秒等,可以根据不同的使用场景进行选择。

平台差异说明

App(vue)App(nvue)H5微信小程序

基本使用

  • 通过show绑定一个布尔变量用于打开或收起日历弹窗。
  • 通过mode参数指定选择单个日期,还是选择日期范围。
html
<template>
  <view>
    <su-calendar v-model="show" :mode="mode"></su-calendar>
    <su-button @click="show = true">打开</su-button>
  </view>
</template>

<script setup>
  import { ref } from 'vue'

  const show = ref(false)
</script>

日历模式

  • modesingle只能选择单个日期
  • modemultiple可以选择多个日期
  • moderange可以选择日期范围

单个日期模式

选择日期后,需要点击底部的确定按钮才能触发回调事件,回调参数为一个对象,有如下属性:

js
;['2021-07-01']

示例代码:

html
<template>
  <su-calendar :show="show" :mode="mode" @confirm="confirm"></su-calendar>
</template>

<script setup>
  import { ref } from 'vue'

  const show = ref(true)
  const mode = ref('single')

  const confirm = (e) => {
    console.log(e)
  }
</script>

多个日期模式

选择日期后,需要点击底部的确定按钮才能触发回调事件,回调参数为一个对象,有如下属性:

js
;['2021-07-27', '2021-07-29', '2021-07-30']

示例代码:

html
<template>
  <su-calendar :show="show" :mode="mode" @confirm="confirm"></su-calendar>
</template>

<script setup>
  import { ref } from 'vue'

  const show = ref(true)
  const mode = ref('multiple')

  const confirm = (e) => {
    console.log(e)
  }
</script>

日期范围模式

此模式用于选择一个日期范围,比如住酒店的入住到离店的日期范围,有如下可配置的参数:

此模式的返回参数如下:

js
;['2021-07-27', '2021-07-28', '2021-07-29', '2021-07-30', '2021-07-31']

示例代码:

html
<template>
  <su-calendar v-model="show" :mode="mode" @change="change"></su-calendar>
</template>

<script setup>
  import { ref } from 'vue'

  const show = ref(true)
  const mode = ref('range')

  const confirm = (e) => {
    console.log(e)
  }
</script>

自定义主题颜色

组件可传入color参数,更改组件主题色

示例代码:

html
<template>
  <su-calendar :show="show" color="#f56c6c" :mode="mode" @confirm="confirm"></su-calendar>
</template>

<script setup>
  import { ref } from 'vue'

  const show = ref(true)
  const mode = ref('range')

  const confirm = (e) => {
    console.log(e)
  }
</script>

自定义文案

组件可以通过formatter以函数的方式定义日期文案

注意

微信小程序不支持通过props传递函数参数,所以组件内部暴露了一个setFormatter方法用于设置格式化方法,注意在页面的onReady生命周期获取ref再操作。

html
<template>
  <su-calendar
    startText="住店"
    endText="离店"
    confirmDisabledText="请选择离店日期"
    :formatter="formatter"
    :show="show"
    :mode="mode"
    @confirm="confirm"
    ref="calendar"
  ></su-calendar>
</template>

<script setup>
  import { ref } from 'vue'
  import { onReady } from '@dcloudio/uni-app'

  const show = ref(true)
  const mode = ref('range')

  const confirm = (e) => {
    console.log(e)
  }

  const formatter = (day) => {
    const d = new Date()
    let month = d.getMonth() + 1
    const date = d.getDate()
    if (day.month == month && day.day == date + 3) {
      day.bottomInfo = '有优惠'
      day.dot = true
    }
    return day
  }

  const onReady = () => {
    // 如果需要兼容微信小程序的话,需要用此写法
    $refs.calendar.setFormatter(formatter)
  }
</script>

<style lang="scss" scoped>
  .title {
    color: $su-type-primary;
    text-align: center;
    padding: 20rpx 0 0 0;
  }
</style>

日期最大范围

组件可以通过maxDate定义日期文案

html
<template>
  <su-calendar :maxDate="maxDate" :show="show" @confirm="confirm"></su-calendar>
</template>

<script setup>
  import { ref } from 'vue'

  const d = new Date()
  const year = d.getFullYear()
  let month = d.getMonth() + 1
  month = month < 10 ? `0${month}` : month

  const date = d.getDate()

  const show = ref(true)
  const maxDate = `${year}-${month}-${date + 10}`

  const confirm = (e) => {
    console.log(e)
  }
</script>

是否显示农历

组件可以通过showLunar定义是否显示农历

html
<template>
  <su-calendar showLunar :show="show" @confirm="confirm"></su-calendar>
</template>

<script setup>
  import { ref } from 'vue'

  const show = ref(true)

  const confirm = (e) => {
    console.log(e)
  }
</script>

是否显示工作日

组件可以通过showWordDay定义是否显示农历

html
<template>
  <su-calendar showWordDay :show="show" @confirm="confirm"></su-calendar>
</template>

<script setup>
  import { ref } from 'vue'

  const show = ref(true)

  const confirm = (e) => {
    console.log(e)
  }
</script>

默认日期

组件可以通过defaultDate定义默认日期

html
<template>
  <su-calendar :defaultDate="defaultDateMultiple" :show="show" mode="multiple" @confirm="confirm"></su-calendar>
</template>

<script setup>
  import { ref } from 'vue'

  const d = new Date()
  const year = d.getFullYear()
  let month = d.getMonth() + 1
  month = month < 10 ? `0${month}` : month
  const date = d.getDate()

  const show = ref(true)
  const defaultDateMultiple = [`${year}-${month}-${date}`, `${year}-${month}-${date + 1}`, `${year}-${month}-${date + 2}`]

  const confirm = (e) => {
    console.log(e)
  }
</script>

示例源码

点击可以查看 右侧演示页面的源码

API

Props

参数说明类型默认值可选值
title标题内容String日期选择-
showTitle是否显示标题Booleantruefalse
mode日期类型选择Stringsinglemultiple-可以选择多个日期,range-选择日期范围(多个月需配合monthNum属性使用)
startTextmode=range时,第一个日期底部的提示文字String开始-
endTextmode=range时,最后一个日期底部的提示文字String结束-
customList自定义列表Array[][]
color主题色,对底部按钮和选中日期有效String#3c9cff-
minDate最小可选日期Number | String0-
maxDate最大可选日期Number | String0-
defaultDate默认选中的日期,mode为multiple或range是必须为数组格式Array | \String | Datenull-
maxCountmode=multiple时,最多可选多少个日期Number | StringNumber.MAX_SAFE_INTEGER-
rowHeight日期行高Number | String56-
formatter日期格式化函数(如需兼容微信小程序,则只能通过setFormatter方法)Functionnull-
showLunar是否显示农历Booleanfalsetrue
showMark是否显示月份背景色Booleantruefalse
confirmText确定按钮的文字String确定-
confirmDisabledText确认按钮处于禁用状态时的文字String确定-
show是否显示日历弹窗Booleanfalsetrue
closeOnClickOverlay是否允许点击遮罩关闭日历 (注意:关闭事件需要自行处理,只会在开启closeOnClickOverlay后点击遮罩层执行close回调)Booleanfalsetrue
readonly是否为只读状态,只读状态下禁止选择日期Booleanfalsetrue
maxRange日期区间最多可选天数,默认无限制,mode = range时有效Number | String无限制-
rangePrompt范围选择超过最多可选天数时的提示文案,mode = range时有效String | null选择天数不能超过 xx 天-
showRangePrompt是否允许日期范围的起止时间为同一天,mode = range时有效Booleantruefalse
allowSameDay是否允许日期范围的起止时间为同一天,mode = range时有效Booleanfalsetrue
round圆角值,默认无圆角String | Number0-
monthNum最大展示的月份数量String | Number3-
weekText星期文案,可用于多语言。Array['一', '二', '三', '四', '五', '六', '日']-
forbidDays单选与多选禁止选中的日期列表,mode!=range时有效。Array[]-
forbidDaysToast单选与多选禁止选中的日期选择时提示。String该日期已禁用-
showWordDay是否显示工作日Booleanfalsetrue

Methods

方法名说明
setFormatter为兼容微信小程序而暴露的内部方法,见上方说明

Event

事件名说明回调参数
confirm日期选择完成后触发,若show-confirmtrue,则点击确认按钮后触发选择日期相关的返回参数
close日历关闭时触发可定义页面关闭时的回调事件

Released under the MIT License.

Released under the MIT License.