刘建东 12d7dcf7e9 [bugfix] DateTime: 修复非标准 iso 格式时间初始时间错误的问题 (#355)
* fix: 修复非标准 iso 格式时间初始时间错误的问题

* 增加返回值 date
2018-07-12 21:32:49 +08:00

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