提交 d49c73f7 编写于 作者: M mahaifeng

[privacy]添加隐私政策示例

上级 2026f167
...@@ -28,7 +28,8 @@ ...@@ -28,7 +28,8 @@
path: '' path: ''
} as OnShowOptions } as OnShowOptions
}, },
onLaunch: function (res : OnLaunchOptions) { onLaunch: function (res : OnLaunchOptions) {
this.globalData.launchOptions = res this.globalData.launchOptions = res
// 自动化测试 // 自动化测试
...@@ -55,7 +56,31 @@ ...@@ -55,7 +56,31 @@
}, fail(err) { }, fail(err) {
console.log(err); console.log(err);
} }
}) })
// #ifdef APP
if (process.env.NODE_ENV === 'development') {
//真机运行可以去掉此注释
// uni.getPrivacySetting({
// success(res){
// if(res.needAuthorization){
// uni.openDialogPage({
// url: '/pages/API/dialog-page/dialog-privacytest',
// })
// }
// }
// })
}else {
uni.getPrivacySetting({
success(res1){
if(res1.needAuthorization){
uni.openDialogPage({
url: '/pages/API/dialog-page/dialog-privacytest',
})
}
}
})
}
// #endif
}, },
onShow: function (res : OnShowOptions) { onShow: function (res : OnShowOptions) {
this.globalData.onShowOption = res this.globalData.onShowOption = res
......
...@@ -1861,6 +1861,13 @@ ...@@ -1861,6 +1861,13 @@
"navigationBarTitleText": "", "navigationBarTitleText": "",
"backgroundColorContent": "#fffae8" "backgroundColorContent": "#fffae8"
} }
},
{
"path" : "pages/API/dialog-page/dialog-privacytest",
"style" :
{
"navigationBarTitleText" : ""
}
} }
], ],
"globalStyle": { "globalStyle": {
......
<template> <template>
<view class="dialog-container"> <view class="dialog-container">
<view class="dialog-content"> <view class="dialog-content">
<text style="text-align: center;margin: 12px;font-size: 20px;"> 隐私协议弹框</text> <text style="text-align: center;margin: 12px;font-size: 20px;"> 个人信息保护指引</text>
<button type="primary" style="margin-top: 12px;margin-bottom: 12px;" open-type="agreePrivacyAuthorization" <text style="color: #333333;">欢迎使用Hello UNI APPX,我们将通过《用户服务协议》及相关个人信息处理规则帮助你了解我们如何收集、处理个人信息。
根据《常见类型移动互联网应用程序必要个人信息范围规定》。同意《基本功能数据处理规则》仅代表你同意使用浏览、搜索、下载等主要功能收集、处理相关必要个人信息及数据。
此外,为了向你提供更多丰富、优质的服务,我们可能在你使用本产品的过程中提供电商购物、财经支付等扩展功能,如果你拒绝提供,你可能无法使用相应的扩展服务,但不影响你使用我们的基础服务。我们通过《隐私政策》帮助你全面了解我们的服务及收集、处理个人信息的详细情况。
</text>
<button type="warn" style="margin-top: 12px;margin-bottom: 12px;" open-type="agreePrivacyAuthorization"
@click="agree">同意</button> @click="agree">同意</button>
<button @click="reject">拒绝</button> <button @click="reject">不同意</button>
</view> </view>
</view> </view>
</template> </template>
...@@ -15,27 +19,24 @@ ...@@ -15,27 +19,24 @@
} }
}, },
methods: { onLoad() {
agree() { uni.onPrivacyAuthorizationChange((callback) => {
// #ifdef APP-ANDROID
uni.showToast({ uni.showToast({
title: 'isPrivacyAgree:' + UTSAndroid.isPrivacyAgree() title: 'isPrivacyAgree:' + !callback.needAuthorization
}) })
})
},
methods: {
agree() {
uni.closeDialogPage({ uni.closeDialogPage({
dialogPage: this.$page as UniDialogPage dialogPage: this.$page as UniDialogPage
}) })
// #endif
}, },
reject() { reject() {
// #ifdef APP-ANDROID uni.resetPrivacyAuthorization()
UTSAndroid.setPrivacyAgree(false)
uni.showToast({
title: 'isPrivacyAgree:' + UTSAndroid.isPrivacyAgree()
})
uni.closeDialogPage({ uni.closeDialogPage({
dialogPage: this.$page as UniDialogPage dialogPage: this.$page as UniDialogPage
}) })
// #endif
} }
} }
} }
......
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
<!-- #ifdef APP --> <!-- #ifdef APP -->
<scroll-view style="flex:1"> <scroll-view style="flex:1">
<!-- #endif --> <!-- #endif -->
<button id="opentype" style="margin: 12px;" type="primary" open-type="agreePrivacyAuthorization" @click="agree">agreePrivacyAuthorization</button> <button id="opentype" style="margin: 12px;" type="primary"
open-type="agreePrivacyAuthorization">agreePrivacyAuthorization</button>
<!-- #ifdef APP --> <!-- #ifdef APP -->
</scroll-view> </scroll-view>
<!-- #endif --> <!-- #endif -->
...@@ -16,17 +17,15 @@ ...@@ -16,17 +17,15 @@
log: "", log: "",
} }
}, },
onLoad() {
uni.onPrivacyAuthorizationChange((callback) => {
this.isAgreeRes = !callback.needAuthorization
uni.showToast({
title: 'isPrivacyAgree:' + this.isAgreeRes
})
})
},
methods: { methods: {
agree() {
// #ifdef APP-ANDROID
let res = UTSAndroid.isPrivacyAgree()
this.isAgreeRes = res
uni.showToast({
title:'isPrivacyAgree:'+res
})
// #endif
}
} }
} }
</script> </script>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册