我的页面
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
const date = new Date()
|
||||
const years = []
|
||||
const months = []
|
||||
|
||||
for (let i = 1990; i <= date.getFullYear(); i++) {
|
||||
years.push(i)
|
||||
}
|
||||
|
||||
for (let i = 1; i <= 12; i++) {
|
||||
months.push(i)
|
||||
}
|
||||
|
||||
Page({
|
||||
data: {
|
||||
years: years,
|
||||
year: date.getFullYear(),
|
||||
months: months,
|
||||
month: 2,
|
||||
value: [9999, 1, 1],
|
||||
},
|
||||
bindChange: function (e) {
|
||||
const val = e.detail.value
|
||||
this.setData({
|
||||
year: this.data.years[val[0]],
|
||||
month: this.data.months[val[1]],
|
||||
})
|
||||
console.log(this.data)
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user