mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
21 lines
422 B
JavaScript
21 lines
422 B
JavaScript
Page({
|
|
onLoad () {
|
|
setTimeout(() => {
|
|
this.setData({
|
|
date: new Date('2300/12/12').getTime()
|
|
})
|
|
}, 100)
|
|
},
|
|
|
|
customChange ({detail}) {
|
|
this.setData({pickerView1: detail.value.join('-')})
|
|
},
|
|
|
|
nativeChange ({detail}) {
|
|
this.setData({pickerView2: detail.value.join('-')})
|
|
},
|
|
|
|
change ({ detail: { value, date } }) {
|
|
console.log('value is', value, 'and date is', date)
|
|
}
|
|
}) |