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.
|
// pages/fengguang/fengguang.js
|
|
Page({
|
|
data:{
|
|
|
|
"items": [1,2,3,4],
|
|
number:[1,2,3,4,5,6]
|
|
|
|
},
|
|
|
|
onReady:function(){
|
|
// 页面渲染完成
|
|
},
|
|
onShow:function(){
|
|
// 页面显示
|
|
},
|
|
onHide:function(){
|
|
// 页面隐藏
|
|
},
|
|
onUnload:function(){
|
|
// 页面关闭
|
|
}
|
|
})
|