DatePicker 日期选择

介绍

日期选择器,用于选择年、月、日,通常与弹出层组件配合使用。

引入

通过以下方式来全局注册组件,更多注册方式请参考组件注册

  1. import { createApp } from 'vue';
  2. import { DatePicker } from 'vant';
  3. const app = createApp();
  4. app.use(DatePicker);

代码演示

基础用法

通过 v-model 绑定当前选中的日期,通过 min-datemax-date 属性来设定可选的时间范围。

  1. <van-date-picker
  2. v-model="currentDate"
  3. title="选择日期"
  4. :min-date="minDate"
  5. :max-date="maxDate"
  6. />
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const currentDate = ref(['2021', '01', '01']);
  5. return {
  6. minDate: new Date(2020, 0, 1),
  7. maxDate: new Date(2025, 5, 1),
  8. currentDate,
  9. };
  10. },
  11. };

选项类型

通过 columns-type 属性可以控制选项的类型,支持以任意顺序对 yearmonthday 进行排列组合。

比如:

  • 传入 ['year'] 来单独选择年份。
  • 传入 ['month'] 来单独选择月份。
  • 传入 ['year', 'month'] 来选择年份和月份。
  • 传入 ['month', 'day'] 来选择月份和日期。
  1. <van-date-picker
  2. v-model="currentDate"
  3. title="选择年月"
  4. :min-date="minDate"
  5. :max-date="maxDate"
  6. :columns-type="columnsType"
  7. />
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const currentDate = ref(['2021', '01']);
  5. const columnsType = ['year', 'month'];
  6. return {
  7. minDate: new Date(2020, 0, 1),
  8. maxDate: new Date(2025, 5, 1),
  9. currentDate,
  10. columnsType,
  11. };
  12. },
  13. };

格式化选项

通过传入 formatter 函数,可以对选项文字进行格式化处理。

  1. <van-date-picker
  2. v-model="currentDate"
  3. title="选择年月"
  4. :min-date="minDate"
  5. :max-date="maxDate"
  6. :formatter="formatter"
  7. :columns-type="columnsType"
  8. />
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const currentDate = ref(['2021', '01']);
  5. const columnsType = ['year', 'month'];
  6. const formatter = (type, option) => {
  7. if (type === 'year') {
  8. option.text += '年';
  9. }
  10. if (type === 'month') {
  11. option.text += '月';
  12. }
  13. return option;
  14. };
  15. return {
  16. minDate: new Date(2020, 0, 1),
  17. maxDate: new Date(2025, 5, 1),
  18. formatter,
  19. currentDate,
  20. columnsType,
  21. };
  22. },
  23. };

过滤选项

通过传入 filter 函数,可以对选项数组进行过滤,实现自定义选项间隔。

  1. <van-date-picker
  2. v-model="currentDate"
  3. title="选择年月"
  4. :filter="filter"
  5. :min-date="minDate"
  6. :max-date="maxDate"
  7. :columns-type="columnsType"
  8. />
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const currentDate = ref(['2021', '01']);
  5. const columnsType = ['year', 'month'];
  6. const filter = (type, options) => {
  7. if (type === 'month') {
  8. return options.filter((option) => Number(option.value) % 6 === 0);
  9. }
  10. return options;
  11. };
  12. return {
  13. filter,
  14. minDate: new Date(2020, 0, 1),
  15. maxDate: new Date(2025, 5, 1),
  16. currentTime,
  17. columnsType,
  18. };
  19. },
  20. };

API

Props

参数说明类型默认值
v-model当前选中的日期string[][]
columns-type选项类型,由 yearmonthday 组成的数组string[][‘year’, ‘month’, ‘day’]
min-date可选的最小时间,精确到日Date十年前
max-date可选的最大时间,精确到日Date十年后
title顶部栏标题string‘’
confirm-button-text确认按钮文字string确认
cancel-button-text取消按钮文字string取消
show-toolbar是否显示顶部栏booleantrue
loading是否显示加载状态booleanfalse
readonly是否为只读状态,只读状态下无法切换选项booleanfalse
filter选项过滤函数(type: string, options: PickerOption[]) => PickerOption[]-
formatter选项格式化函数(type: string, option: PickerOption) => PickerOption-
option-height选项高度,支持 px vw vh rem 单位,默认 pxnumber | string44
visible-option-num可见的选项个数number | string6
swipe-duration快速滑动时惯性滚动的时长,单位 msnumber | string1000

Events

事件名说明回调参数
confirm点击完成按钮时触发{ selectedValues, selectedOptions }
cancel点击取消按钮时触发{ selectedValues, selectedOptions }
change选项改变时触发{ selectedValues, selectedOptions, columnIndex }

Slots

名称说明参数
toolbar自定义整个顶部栏的内容-
title自定义标题内容-
confirm自定义确认按钮内容-
cancel自定义取消按钮内容-
option自定义选项内容option: PickerOption
columns-top自定义选项上方内容-
columns-bottom自定义选项下方内容-

类型定义

组件导出以下类型定义:

  1. import type { DatePickerProps, DatePickerColumnType } from 'vant';

常见问题

设置 min-date 或 max-date 后出现页面卡死的情况?

请注意不要在模板中直接使用类似 min-date="new Date()" 的写法,这样会导致每次渲染组件时传入一个新的 Date 对象,而传入新的数据会触发下一次渲染,从而陷入死循环。

正确的做法是将 min-date 作为一个数据定义在 data 函数或 setup 中。

在 iOS 系统上初始化组件失败?

如果你遇到了在 iOS 上无法渲染组件的问题,请确认在创建 Date 对象时没有使用 new Date('2020-01-01') 这样的写法,iOS 不支持以中划线分隔的日期格式,正确写法是 new Date('2020/01/01')

对此问题的详细解释:stackoverflow

在桌面端无法操作组件?

参见桌面端适配

DatePicker 日期选择 - 图1