1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- Component({
- /**
- * 组件的初始数据
- */
- data: {
- privacyContractName: '',
- showPrivacy: false
- },
- /**
- * 组件的生命周期
- */
- lifetimes: {
- attached() {
- const _ = this
- wx.getPrivacySetting({
- success(res) {
- if (res.errMsg == "getPrivacySetting:ok") {
- _.setData({
- privacyContractName: res.privacyContractName,
- showPrivacy: res.needAuthorization
- })
- }
- }
- })
- },
- },
- /**
- * 组件的方法列表
- */
- methods: {
- // 打开隐私协议页面
- openPrivacyContract() {
- const _ = this
- wx.openPrivacyContract({
- fail: () => {
- wx.showToast({
- title: '遇到错误',
- icon: 'error'
- })
- }
- })
- },
- // 拒绝隐私协议
- exitMiniProgram() {
- // 直接退出小程序
- wx.exitMiniProgram()
- },
- // 同意隐私协议
- handleAgreePrivacyAuthorization() {
- const _ = this
- _.setData({
- showPrivacy: false
- })
- },
- },
- })
|