12 lines
185 B
JavaScript
12 lines
185 B
JavaScript
Page({
|
|
data: {},
|
|
onLoad: function (options) {
|
|
|
|
},
|
|
onShow: function () {
|
|
if (wx.canIUse('hideHomeButton')) {
|
|
wx.hideHomeButton()
|
|
}
|
|
},
|
|
});
|