123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <template>
- <view :style="colorStyle">
- <view class="mask" @touchmove.prevent :hidden="isShow === false"></view>
- <view class="product-window" :class="{'on':isShow}">
- <view class="mp-data">
- <text class="mp-name">服务与隐私协议</text>
- </view>
- <view class="trip-msg">
- <view class="trip">
- {{`请仔细阅读以下内容,并作出适当的选择:`}}
- </view>
- </view>
- <view class="trip-title">
- 隐私政策概要
- </view>
- <view class="trip-msg">
- <view class="trip">
- 当您点击同意并继续使用产品服务时,即表示您已理解并同意该条款内容,该条款将对您产生法律约束力。如您拒绝,将无法继续下一步操作。
- </view>
- </view>
- <view class="main-color" @click.stop="privacy('privacy')">点击阅读{{agreementName}}</view>
- <view class="bottom">
- <button class="save open" type="default" id="agree-btn" open-type="agreePrivacyAuthorization"
- @agreeprivacyauthorization="handleAgree">同意并继续</button>
- <button class="reject" @click="rejectAgreement">取消</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- import colors from "@/mixins/color";
- export default {
- mixins: [colors],
- data() {
- return {
- isShow: false,
- agreementName: '',
- configData: this.$Cache.get('BASIC_CONFIG'),
- };
- },
- mounted() {
- wx.getPrivacySetting({
- success: res => {
- if (res.needAuthorization) {
- // 需要弹出隐私协议
- this.isShow = true
- this.agreementName = res.privacyContractName
- } else {
- this.$emit('onAgree');
- // 用户已经同意过隐私协议,所以不需要再弹出隐私协议,也能调用已声明过的隐私接口
- // wx.getUserProfile()
- // wx.chooseMedia()
- // wx.getClipboardData()
- // wx.startRecord()
- }
- },
- fail: () => {},
- complete: () => {}
- })
- },
- methods: {
- // 同意
- handleAgree() {
- this.isShow = false
- this.$emit('onAgree');
- },
- // 拒绝
- rejectAgreement() {
- this.isShow = false
- uni.switchTab({
- url: '/pages/index/index'
- })
- this.$emit('onReject');
- },
- // 跳转协议
- privacy(type) {
- uni.navigateTo({
- url: "/pages/users/privacy/index?type=" + type
- })
- },
- }
- }
- </script>
- <style>
- .pl-sty {
- color: #999999;
- font-size: 30rpx;
- }
- </style>
- <style scoped lang="scss">
- .product-window.on {
- transform: translate3d(0, 0, 0);
- }
- .mask {
- z-index: 99;
- }
- .product-window {
- position: fixed;
- bottom: 0;
- width: 100%;
- left: 0;
- background-color: #fff;
- z-index: 1000;
- border-radius: 40rpx 40rpx 0 0;
- transform: translate3d(0, 100%, 0);
- transition: all .3s cubic-bezier(.25, .5, .5, .9);
- padding: 64rpx 40rpx;
- padding-bottom: 38rpx;
- padding-bottom: calc(38rpx+ constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
- padding-bottom: calc(38rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
- box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.06);
- .icon-guanbi {
- position: absolute;
- top: 40rpx;
- right: 40rpx;
- font-size: 24rpx;
- font-weight: bold;
- color: #999;
- }
- .mp-data {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 40rpx;
- .mp-name {
- font-size: 34rpx;
- font-weight: 500;
- color: #333333;
- line-height: 48rpx;
- }
- }
- .trip-msg {
- padding-bottom: 32rpx;
- .title {
- font-size: 30rpx;
- font-weight: bold;
- color: #000;
- margin-bottom: 6rpx;
- }
- .trip {
- color: #333333;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- font-weight: 400;
- }
- }
- .trip-title {
- font-size: 28rpx;
- font-weight: 500;
- color: #333333;
- margin-bottom: 8rpx;
- }
- .main-color {
- font-size: 28rpx;
- font-weight: 400;
- color: var(--view-theme);
- margin-bottom: 40rpx;
- }
- .bottom {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- .save,
- .reject {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 670rpx;
- height: 80rpx;
- border-radius: 80rpx;
- background-color: #F5F5F5;
- color: #333;
- font-size: 30rpx;
- font-weight: 500;
- }
- .save {
- background-color: var(--view-theme);
- color: #fff;
- margin-bottom: 24rpx;
- }
- }
- }
- </style>
|