TimePicker 时间选择

介绍

时间选择器,通常与弹出层组件配合使用。

引入

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

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

代码演示

基础用法

通过 v-model 绑定当前选中的时间。

  1. <van-time-picker v-model="currentTime" title="选择时间" />
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const currentTime = ref(['12', '00']);
  5. return { currentTime };
  6. },
  7. };

选项类型

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

比如:

  • 传入 ['hour'] 来单独选择小时。
  • 传入 ['minute'] 来单独选择分钟。
  • 传入 ['minute', 'second'] 来选择分钟和秒。
  • 传入 ['hour', 'minute', 'second'] 来选择小时、分钟和秒。
  1. <van-time-picker
  2. v-model="currentTime"
  3. title="选择时间"
  4. :columns-type="columnsType"
  5. />
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const currentTime = ref(['12', '00', '00']);
  5. const columnsType = ['hour', 'minute', 'second'];
  6. return {
  7. currentTime,
  8. columnsType,
  9. };
  10. },
  11. };

时间范围

  1. <van-time-picker
  2. v-model="currentTime"
  3. title="选择时间"
  4. :min-hour="10"
  5. :max-hour="20"
  6. :min-minute="30"
  7. :max-minute="40"
  8. />
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const currentTime = ref(['12', '35']);
  5. return { currentTime };
  6. },
  7. };

格式化选项

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

  1. <van-time-picker
  2. v-model="currentTime"
  3. title="选择时间"
  4. :formatter="formatter"
  5. />
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const currentTime = ref(['12', '00']);
  5. const formatter = (type, option) => {
  6. if (type === 'hour') {
  7. option.text += '时';
  8. }
  9. if (type === 'minute') {
  10. option.text += '分';
  11. }
  12. return option;
  13. };
  14. return {
  15. filter,
  16. currentTime,
  17. };
  18. },
  19. };

过滤选项

通过传入 filter 函数,可以对选项数组进行过滤,剔除不需要的时间,实现自定义时间间隔。

  1. <van-time-picker v-model="currentTime" title="选择时间" :filter="filter" />
  1. import { ref } from 'vue';
  2. export default {
  3. setup() {
  4. const currentTime = ref(['12', '00']);
  5. const filter = (type, options) => {
  6. if (type === 'minute') {
  7. return options.filter((option) => Number(option) % 10 === 0);
  8. }
  9. return options;
  10. };
  11. return {
  12. filter,
  13. currentTime,
  14. };
  15. },
  16. };

API

Props

参数说明类型默认值
v-model当前选中的时间string[]-
columns-type选项类型,由 hourminutesecond 组成的数组string[][‘hour’, ‘minute’]
min-hour可选的最小小时number | string0
max-hour可选的最大小时number | string23
min-minute可选的最小分钟number | string0
max-minute可选的最大分钟number | string59
min-second可选的最小秒数number | string0
max-second可选的最大秒数number | string59
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 { TimePickerProps, TimePickerColumnType } from 'vant';

常见问题

在桌面端无法操作组件?

参见桌面端适配

TimePicker 时间选择 - 图1