You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
797 B

3 years ago
// index.js
3 years ago
const words = [
["江南", 1],
["乌镇", 2],
["儿时", 20],
["入园", 8],
["长大", 9],
["happy", 10],
["音乐喷泉", 1],
["门票", 33],
["江南", 1],
["乌镇", 2],
["玩耍", 12],
["风景", 4],
["六月", 5],
["江南", 1],
["乌镇", 2],
["儿时", 20],
["入园", 8],
["长大", 9],
["happy", 10],
["音乐喷泉", 1],
["门票", 33],
["江南", 1],
["乌镇", 2],
["玩耍", 12],
["风景", 4],
["六月", 5]
3 years ago
]
3 years ago
Page({
data: {
3 years ago
minHour: 10,
maxHour: 20,
// minDate: new Date().getTime(),
// maxDate: new Date().getTime(),
currentDate: new Date().getTime(),
3 years ago
},
onShow() {
this.getTabBar().init();
},
3 years ago
});