mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
21 lines
432 B
JavaScript
21 lines
432 B
JavaScript
import Page from '../../common/page';
|
|
|
|
Page({
|
|
data: {
|
|
minHour: 10,
|
|
maxHour: 20,
|
|
minDate: new Date(2018, 0, 1).getTime(),
|
|
maxDate: new Date(2019, 10, 1).getTime(),
|
|
currentDate1: new Date(2018, 2, 1).getTime(),
|
|
currentDate2: null,
|
|
currentDate3: new Date(2018, 0, 1),
|
|
currentDate4: '12:00',
|
|
loading: false
|
|
},
|
|
|
|
onChange(event) {
|
|
const picker = event.detail;
|
|
console.log(event);
|
|
}
|
|
});
|