19 lines
412 B
JavaScript
19 lines
412 B
JavaScript
let app = getApp()
|
|
Page({
|
|
data: {
|
|
canLogin: true,
|
|
},
|
|
/** 生命周期函数--监听页面加载 */
|
|
onLoad: function (options) {
|
|
// wx.showLoading({ title: '加载中' })
|
|
},
|
|
/** 生命周期函数--监听页面显示 */
|
|
onShow: function () {
|
|
|
|
},
|
|
/** 用户点击右上角分享 */
|
|
onShareAppMessage: function () {
|
|
return { path: "pages/firstpage/firstpage?from=share" }
|
|
},
|
|
|
|
}) |