Skip to content

DatetimePickerView Date Time Picker View

An encapsulation of the Picker component with date and time options built internally.

Basic Usage

v-model sets the binding value. The default type is datetime, which displays year, month, day, hour, and minute. The binding value is of type timestamp. For time type, the binding value is a string.

html
<wd-toast />

<wd-datetime-picker-view v-model="value" label="Date Selection" @change="handleChange" />
typescript
import { useToast } from '@/uni_modules/wot-design-uni'
const toast = useToast()
const value = ref<number>(Date.now())

function onChange1({ value }) {
  toast.show('Selected ' + new Date(value))
}

Date Type

date type only displays year, month, and day.

html
<wd-datetime-picker-view type="date" v-model="value" label="Year Month Day" />
typescript
const value = ref<number>(Date.now())

Year-Month Type

year-month type only displays year and month.

html
<wd-datetime-picker-view type="year-month" v-model="value" label="Year Month" />
typescript
const value = ref<number>(Date.now())

Year Type

year type only displays year.

html
<wd-datetime-picker-view type="year" v-model="value" label="Year" />
typescript
const value = ref<number>(Date.now())

Time Type

time type only displays hour and minute, the binding value is in HH:mm format.

html
<wd-datetime-picker-view type="time" v-model="value" label="Hour Minute" />
typescript
const value4 = ref<string>('11:12')

Modify Internal Format

Pass a function to the formatter property, which receives type and value values and returns the display text content. type can be year, month, date, hour, minute, and value is of type number. Using a custom formatter will disable the built-in default display-format function.

html
<wd-datetime-picker-view v-model="value" label="Internal Format" :formatter="formatter" />
typescript
const value = ref<number>(Date.now())

const formatter = (type, value) => {
  switch (type) {
    case 'year':
      return value + ' Year'
    case 'month':
      return value + ' Month'
    case 'date':
      return value + ' Day'
    case 'hour':
      return value + ' Hour'
    case 'minute':
      return value + ' Minute'
    default:
      return value
  }
}

Filter Options

Pass a function to the filter property, which receives type and values values and returns the column's option list. type can be year, month, date, hour, minute, and values is a number array.

html
<wd-datetime-picker-view v-model="value" label="Filter Options" :filter="filter" />
typescript
const value = ref<number>(Date.now())

const filter = (type, values) => {
  if (type === 'minute') {
    return values.filter((value) => value % 5 === 0)
  }
  return values
}

Attributes

AttributeDescriptionTypeOptionsDefaultVersion
v-modelSelected value, when type is time, type is string, otherwise timestampstring / timestamp---
typePicker typestringdate / year-month / time / yeardatetime-
loadingLoading stateboolean-false-
loading-colorLoading color, can only use hexadecimal color values and cannot use abbreviated formatstring-#4D80F0-
columns-heightHeight of picker's internal rollernumber-231-
formatterCustom formatting function for popup layer option text, returns a stringfunction---
filterCustom function for filtering options, returns column's option arrayfunction---
minDateMinimum date, 13-digit timestamptimestamp-Current date - 10 years-
maxDateMaximum date, 13-digit timestamptimestamp-Current date + 10 years-
minHourMinimum hour, effective for time typenumber-0-
maxHourMaximum hour, effective for time typenumber-23-
minMinuteMinimum minute, effective for time typenumber-0-
maxMinuteMaximum minute, effective for time typenumber-59-
immediate-changeWhether to trigger the picker-view's change event immediately when the finger is released. If not enabled, the change event will be triggered after the scrolling animation ends. Available from version 1.2.25, only supported on WeChat Mini Program and Alipay Mini Program.boolean-false1.2.25

Events

Event NameDescriptionParametersVersion
changeTriggered when switching optionsSelected value { value }, value is the timestamp of currently selected date, or string for 'time' type-
pickstartTriggered when scroll selection starts--
pickendTriggered when scroll selection ends--

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.