privacy_pop.wxml 2.4 KB
<view wx:if="{{show_pri}}">
    <!-- 遮罩层 -->
    <view class="cover-layer" style="z-index:11111"></view>
    <!-- 内容层 -->
    <view class="privacy_view">
        <view class="pri_title">
            隐私政策更新提示
        </view>
        <view class="pri_content">
            <view class="pri_content_p" >
                为了更好地保障您的权益,我们更新了《{{store.store_name}}小程序隐私政策》,本次更新主要包括:

                <view style="margin:40rpx 0">1. 调整注销账户功能的描述</view>

                请您务必在勾选同意前仔细阅读、充分理解《{{store.store_name}}小程序隐私政策》的内容。若您不同意《{{store.store_name}}小程序隐私政策》的内容,请您选择不同意或立即停止使用我们的产品

                <view style="margin-top:40rpx">如您对上述内容有任何疑问,可与我们电话联系[{{store.store_tel}}]</view>
            </view>
        </view>

        <!-- 用户使用协议和隐私政策 -->
        <view class="pri_btn">
            <view class="flex-vertical fs24">
                <checkbox-group bindchange="isAgree">
                    <checkbox class="m_ck_box" value="true">
                        <label for="true">
                            <view class="user-name-txt">我已阅读同意 <text class="gray" catchtap="goto" data-url="/packageA/pages/parseHtml/parseHtml?t=0">《用户使用协议》</text>与<text class="gray" catchtap="goto" data-url="/packageA/pages/parseHtml/parseHtml?t=1">《隐私政策》</text></view>
                        </label>
                    </checkbox>
                </checkbox-group>
            </view>
        </view>

        <view class="pri_btn">
            <block wx:if="{{!is_all_ok}}">
                <button  class="continue_btn" bindtap="need_ok">
                    <view class="flex flex-center ali-c">
                        <view>同意,继续使用</view>
                    </view>
                </button>
            </block>
            <block wx:else>
                <button  class="continue_btn" open-type="agreePrivacyAuthorization" bindagreeprivacyauthorization="AgreePrivacy">
                    <view class="flex flex-center ali-c">
                        <view>同意,继续使用</view>
                    </view>
                </button>
            </block>
        </view>

    </view>
</view>