24 lines
620 B
JavaScript
24 lines
620 B
JavaScript
import baseComponent from '../helpers/baseComponent'
|
|
import popupMixin from '../helpers/popupMixin'
|
|
import { props } from '../date-picker-view/props'
|
|
import { formatDate } from './utils'
|
|
|
|
const platformProps = {
|
|
labelPropName: 'label',
|
|
format(values, props) {
|
|
const o = {
|
|
datetime: 'yyyy-MM-dd hh:mm',
|
|
date: 'yyyy-MM-dd',
|
|
year: 'yyyy',
|
|
month: 'yyyy-MM',
|
|
time: 'hh:mm',
|
|
}
|
|
return formatDate(values.date, o[props.mode])
|
|
},
|
|
}
|
|
|
|
baseComponent({
|
|
behaviors: [popupMixin('#wux-picker', platformProps)],
|
|
properties: props,
|
|
})
|