45 lines
1007 B
JavaScript
45 lines
1007 B
JavaScript
Page({
|
|
data: {
|
|
// 指定选择区间起始值
|
|
start: '2000-01-01 00:00:00',
|
|
end: '2030-09-09 12:12:12',
|
|
showDateVisible:false,
|
|
showDate:'2022-01',
|
|
},
|
|
onLoad: function (options) {
|
|
|
|
},
|
|
onShow: function () {
|
|
if (wx.canIUse('hideHomeButton')) {
|
|
wx.hideHomeButton()
|
|
}
|
|
},
|
|
showPicker(e) {
|
|
console.log('12312312')
|
|
console.log(e.currentTarget.dataset)
|
|
const { mode } = e.currentTarget.dataset;
|
|
this.setData({
|
|
mode,
|
|
[`${mode}Visible`]: true,
|
|
});
|
|
},
|
|
hidePicker() {
|
|
const { mode } = this.data;
|
|
this.setData({
|
|
[`${mode}Visible`]: false,
|
|
});
|
|
},
|
|
onConfirm(e) {
|
|
const { value } = e.detail;
|
|
const { mode } = this.data;
|
|
console.log('confim', value);
|
|
this.setData({
|
|
[mode]: value
|
|
// [`${mode}Text`]: value,
|
|
});
|
|
|
|
this.hidePicker();
|
|
}
|
|
|
|
});
|