Files
sgy-web/pages/login/agreement/agreement.js
2023-06-21 17:14:39 +08:00

42 lines
818 B
JavaScript

/*
* 手太欠
* 愿这世界都如故事里一样 美好而动人~
*/
Page({
/**
* 页面的初始数据
*/
data: {
content: ''
},
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
if(options.type == 'secret') {
wx.setNavigationBarTitle({
title: '水感应 隐私政策'
})
} else {
wx.setNavigationBarTitle({
title: '水感应 服务协议'
})
}
// 获取用户协议
wx.$api.auth.registeragree(options.type).then(res => {
this.setData({
content: res.data.content
})
}).catch(err => {})
},
/**
* 生命周期函数--监听页面显示
*/
onShow() {},
})