picker-view
注意:其中只可放置 组件,其他节点不会显示。
picker-view-column
示例代码
//picker-view.js
const date = new Date();
const years = [2019,2020,2021];
const months = [1,2,3,4,5,6,7,8,9,10,11,12];
const options = {
data: {
year: date.getFullYear(),
months: months,
month: 2,
value: [9999, 1, 1],
},
pickerViewChange(e) {
month: this.data.months[e.detail.value[1]],
});
this.addEventItem(e);
console.log('picker-view change ,值为', e.detail.value);
}
};
Page(options);