Skip to content

DatetimePicker Date Time Picker

An encapsulation of the DatetimePickerView 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. The label is optional. You can set the title width through label-width, which defaults to 33%.

html
<wd-datetime-picker v-model="value" label="Date Selection" @confirm="handleConfirm" />
typescript
const value = ref<number>(Date.now())
function handleConfirm({ value }) {
  console.log(new Date(value))
}

Set Default Value

default-value sets the default date. When opening the panel, it automatically selects the default date.

html
<wd-datetime-picker v-model="value" :default-value="defaultValue" label="Date Selection" @confirm="handleConfirm" />
typescript
const value = ref<string>('')
const defaultValue = ref<number>(Date.now())

function handleConfirm({ value }) {
  console.log(new Date(value))
}

Date Type

date type only displays year, month, and day.

html
<wd-datetime-picker 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 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 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 type="time" v-model="value" label="Hour Minute" />
typescript
const value4 = ref<string>('09:20')

Modify Display Format

Pass a function to the display-format property, which receives an array of all selected items and returns the display text content.

html
<wd-datetime-picker v-model="value" label="Display Format" :displayFormat="displayFormat" />
typescript
const value = ref<number>(Date.now())
const displayFormat = (items) => {
  return `${items[0].label}Year${items[1].label}Month${items[2].label}Day ${items[3].label}:${items[4].label}`
}

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 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 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
}

Picker Size

Modify the picker size by setting size. When size is set to 'large', the font size is 16px.

html
<wd-datetime-picker label="Date Selection" size="large" v-model="value" />

Required Attribute

Set the required property to enable form required.

html
<wd-datetime-picker label="Required Attribute" error v-model="value" required/>

Error State

Set the error property to display the picker's value in red.

html
<wd-datetime-picker label="Date Selection" error v-model="value" />

Right-aligned Display

Set the align-right property to display the picker's value aligned to the right.

html
<wd-datetime-picker label="Date Selection" align-right v-model="value" />

Validation Before Confirmation

Set the before-confirm function, which will be executed when the user clicks the 'confirm' button. It receives value (string for time type, timestamp for others, array when picker is in range selection mode), resolve, and picker parameters. You can validate the value and use the resolve function to tell the component whether to confirm. resolve accepts a boolean value, resolve(true) means the option is approved, resolve(false) means the option is not approved, and the picker popup won't close when not approved. You can directly set properties like loading through the picker parameter.

html
<wd-toast></wd-toast>
<wd-datetime-picker label="before-confirm" v-model="value" :before-confirm="beforeConfirm" @confirm="handleConfirm" />
typescript
const value = ref<string>('')

const toast = useToast()
const beforeConfirm = (value, resolve, picker) => {
  picker.setLoading(true)
  setTimeout(() => {
    picker.setLoading(false)
    if (value > Date.now()) {
      resolve(false)
      toast.error('Cannot select a date later than today')
    } else {
      resolve(true)
    }
  }, 2000)
}

function handleConfirm({ value }) {
  console.log(new Date(value))
}

Trigger Slot

Set the default slot to modify how to trigger the picker component.

html
<wd-datetime-picker v-model="value">
  <wd-button>Trigger with Slot</wd-button>
</wd-datetime-picker>

Time Range Selection

When v-model is of type Array, time range selection is enabled.

html
<wd-datetime-picker label="Date Selection" v-model="value" @confirm="handleConfirm" />
typescript
const value = ref<any[]>(['', Date.now()])

function handleConfirm({ value }) {
  console.log(new Date(value))
}

Range Selection Tab Label Display Format

Pass a function to the display-format-tab-label property, which receives an array of all selected items and returns the display text content.

html
<wd-datetime-picker v-model="value" label="Range Tab Display Format" :display-format-tab-label="displayFormatTabLabel" @confirm="handleConfirm"></wd-datetime-picker>
typescript
const value = ref<any[]>(['', Date.now()])

function handleConfirm({ value }) {
  console.log(new Date(value))
}

const displayFormatTabLabel = (items) => {
  return `${items[0].label}Year${items[1].label}Month${items[2].label}Day ${items[3].label}:${items[4].label}`
}

Attributes

AttributeDescriptionTypeOptionsDefaultVersion
v-modelSelected value, when type is time, type is string; when type is Array, it's range selection; otherwise timestampstring / timestamp / array---
default-valueDefault date, type consistent with value, automatically selects default date when panel opensstring / timestamp / array---
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-
titlePopup layer titlestring---
cancel-button-textCancel button textstring-Cancel-
confirm-button-textConfirm button textstring-Done-
labelLeft text of picker, label is optionalstring---
placeholderPicker placeholderstring-Please select-
disabledDisabled stateboolean-false-
readonlyRead-only stateboolean-false-
display-formatCustom display text formatting function, returns a stringfunction---
formatterCustom popup layer option text formatting function, returns a stringfunction---
filterCustom function for filtering options, returns column's option arrayfunction---
display-format-tab-labelIn range selection mode, custom function for formatting tab label text, returns a stringfunction---
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-
requiredForm attribute, requiredboolean-false-
sizeSet picker sizestringlarge--
label-widthSet left title widthstring-33%-
errorWhether in error state, right content is red in error stateboolean-false-
align-rightDisplay picker value aligned to the rightboolean-false-
use-label-slotUse label slot, deprecated, use label slot directlyboolean-false-
use-default-slotUse default slot, deprecated, use default slot directlyboolean-false-
before-confirmValidation function before confirmation, receives (value, resolve, picker) parameters, continue picker through resolve, resolve accepts a boolean parameterfunction---
close-on-click-modalWhether to close when clicking maskboolean-true-
z-indexPopup layer z-indexnumber-15-
safe-area-inset-bottomWhether to set bottom safe area for popup panel (iPhone X type devices)boolean-true-
ellipsisWhether to hide overflowboolean-false-
propForm field model field name, required when using form validationstring---
rulesForm validation rules, used with wd-form componentFormItemRule []-[]-
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

FormItemRule Data Structure

KeyDescriptionType
requiredWhether required fieldboolean
messageError messagestring
validatorValidate through function, can return a Promise for async validation(value, rule) => boolean | Promise
patternValidate through regular expression, validation fails if regex doesn't matchRegExp

Events

Event NameDescriptionParametersVersion
confirmTriggered when clicking right button{ value }, value is the timestamp of currently selected date, or string for 'time' type-
cancelTriggered when clicking left button--
toggleIn range selection mode, triggered when switching tab labelsCurrently selected value of the switched picker-

Methods

Method NameDescriptionParametersVersion
openOpen picker popup--
closeClose picker popup--

Slot

NameDescriptionVersion
defaultUse default slot-
labelLeft title slot-

External Classes

Class NameDescriptionVersion
custom-view-classpickerView external custom style-
custom-cell-classpickerView cell external custom style1.3.8
custom-label-classlabel external custom style-
custom-value-classvalue external custom style-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.