/** * Soul创业派对 - 用户协议 * 审核要求:登录前可点击《用户协议》查看完整内容 */ const app = getApp() Page({ data: { statusBarHeight: 44 }, onLoad() { wx.showShareMenu({ withShareTimeline: true }) this.setData({ statusBarHeight: app.globalData.statusBarHeight || 44 }) }, goBack() { getApp().goBackOrToHome() }, onShareAppMessage() { const ref = app.getMyReferralCode() return { title: 'Soul创业派对 - 用户协议', path: ref ? `/pages/agreement/agreement?ref=${ref}` : '/pages/agreement/agreement' } }, onShareTimeline() { const ref = app.getMyReferralCode() return { title: 'Soul创业派对 - 用户协议', query: ref ? `ref=${ref}` : '' } } })