17 lines
446 B
JavaScript
17 lines
446 B
JavaScript
Page({
|
|
data: {},
|
|
onLoad: function(o) {
|
|
console.log("options", o), this.setData({
|
|
bit11: decodeURIComponent(o.ur)
|
|
}), console.log(this.data.bit11);
|
|
},
|
|
onReady: function() {},
|
|
onShow: function() {
|
|
getApp().getTotal();
|
|
},
|
|
onHide: function() {},
|
|
onUnload: function() {},
|
|
onPullDownRefresh: function() {},
|
|
onReachBottom: function() {},
|
|
onShareAppMessage: function() {}
|
|
}); |