Commit 4d8f2f689e98b55da4cb6cabf4de471be58e906a
1 parent
f51ac2e1
隐私政策
Showing
2 changed files
with
9 additions
and
15 deletions
components/privacy_pop/privacy_pop.wxml
1 | 1 | <view wx:if="{{show_pri}}"> |
2 | 2 | <!-- 遮罩层 --> |
3 | - <view class="cover-layer" style="z-index:11111"></view> | |
3 | + <view class="cover-layer" style="z-index:111111"></view> | |
4 | 4 | <!-- 内容层 --> |
5 | 5 | <view class="privacy_view"> |
6 | 6 | <view class="pri_title"> |
7 | - 隐私政策更新提示 | |
7 | + 用户服务协议与隐私政策 | |
8 | 8 | </view> |
9 | 9 | <view class="pri_content"> |
10 | 10 | <view class="pri_content_p" > |
11 | - 为了更好地保障您的权益,我们更新了《{{store.store_name}}小程序隐私政策》,本次更新主要包括: | |
12 | - | |
13 | - <view style="margin:40rpx 0">1. 调整注销账户功能的描述</view> | |
14 | - | |
15 | - 请您务必在勾选同意前仔细阅读、充分理解《{{store.store_name}}小程序隐私政策》的内容。若您不同意《{{store.store_name}}小程序隐私政策》的内容,请您选择不同意或立即停止使用我们的产品 | |
16 | - | |
17 | - <view style="margin-top:40rpx">如您对上述内容有任何疑问,可与我们电话联系[{{store.store_tel}}]</view> | |
11 | + <text style="margin-left:50rpx"></text>您好,为了向您提供更优质的服务,在您使用本小程序服务前,请认真阅读《用户服务协议》和《隐私政策》条款,我们需要在征得您的同意后依法收集并使用相关信息,包括:我们会在您开启位置权限后访问获取您的位置信息,根据您的位置信息提供更契合您需求的页面展示及服务,如推荐距离您最近的售卖门店。 | |
18 | 12 | </view> |
19 | 13 | </view> |
20 | 14 | |
... | ... | @@ -24,7 +18,7 @@ |
24 | 18 | <checkbox-group bindchange="isAgree"> |
25 | 19 | <checkbox class="m_ck_box" value="true"> |
26 | 20 | <label for="true"> |
27 | - <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> | |
21 | + <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> | |
28 | 22 | </label> |
29 | 23 | </checkbox> |
30 | 24 | </checkbox-group> | ... | ... |
components/privacy_pop/privacy_pop.wxss
1 | 1 | @import '../../app.wxss'; |
2 | 2 | .privacy_view{ |
3 | - position: fixed; z-index: 110000; background-color: #fff; | |
3 | + position: fixed; z-index: 220000; background-color: #fff; | |
4 | 4 | left:50%;top: 50%;border-radius: 10rpx; |
5 | 5 | width: 640rpx;margin-left: -320rpx; |
6 | - height:940rpx;margin-top: -470rpx; | |
6 | + height:780rpx;margin-top: -380rpx; | |
7 | 7 | } |
8 | 8 | .pri_title{ |
9 | 9 | color:#333;text-align: center;font-size: 30rpx; margin: 20rpx 0; |
10 | 10 | } |
11 | 11 | .pri_content{ |
12 | - border: 1rpx solid #eee; color:#666; height: 560rpx;width: 600rpx; margin: 0 auto; font-size: 26rpx; | |
12 | + border: 1rpx solid #eee; color:#666; height: 430rpx;width: 600rpx; margin: 0 auto; font-size: 26rpx; | |
13 | 13 | } |
14 | -.pri_content_p{ width: 560rpx;display: block; margin-top: 20rpx;margin-left: 20rpx;} | |
15 | -.pri_btn{width: 600rpx; margin: 0 auto;margin-top: 20rpx} | |
14 | +.pri_content_p{ width: 560rpx;display: block; margin-top: 20rpx;margin-left: 20rpx; line-height: 48rpx;letter-spacing:5rpx } | |
15 | +.pri_btn{width: 600rpx; margin: 0 auto;margin-top: 30rpx} | |
16 | 16 | .gray {color: #767f8e;} |
17 | 17 | .continue_btn{ |
18 | 18 | width: 600rpx; | ... | ... |