You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.5 KiB
36 lines
1.5 KiB
<van-popup |
|
bind:click-overlay="handleCancel" |
|
round |
|
z-index="{{100000}}" |
|
show="{{ show }}" |
|
position="{{params.position || 'center'}}" |
|
safe-area-inset-bottom="{{false}}" |
|
> |
|
<view class="popup1" wx:if="{{type==='argument'}}"> |
|
<image class="logo" src="{{imageUrl}}logo1.png?t={{Timestamp}}"></image> |
|
<view class="title">欢迎加入“愈见守护”</view> |
|
<view class="content"> |
|
亲爱的用户,为了更好地向您提供平台服务保护您的权益,我们完善了 |
|
<text class="link" bind:tap="routerTo" data-url="/doc/pages/doc1/index">《个人信息及隐私政策》</text> |
|
,请您仔细阅读。一旦您开始使用,即表示您已充分理解并同意协议内容。 |
|
</view> |
|
<view class="check"> |
|
<checkbox class="checkbox" model:checked="{{popup1Check1}}" color="#f23a2f"></checkbox> |
|
<view class="c-content"> |
|
我特此同意 |
|
<text class="link" bind:tap="routerTo" data-url="/doc/pages/doc1/index">《个人信息及隐私政策》</text> |
|
规定收集我的相关敏感个人信息 |
|
</view> |
|
</view> |
|
<view class="btn1" bind:tap="handleOk">同意并继续</view> |
|
<view class="btn2" bind:tap="handleCancel">不同意</view> |
|
</view> |
|
|
|
<view class="popup2" wx:if="{{type==='stayTuned'}}"> |
|
<image class="photo" src="{{imageUrl}}stayTuned.png?t={{Timestamp}}"></image> |
|
<view class="content"> |
|
<view>努力建设中</view> |
|
<view>敬请期待</view> |
|
</view> |
|
</view> |
|
</van-popup>
|
|
|