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