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.
85 lines
3.0 KiB
85 lines
3.0 KiB
<view class="page" id="{{theme === 'DRUG' && 'drug-page'}}"> |
|
<image class="bg" mode="widthFix" src="{{imageUrl}}1/login-bg.png?t={{Timestamp}}"></image> |
|
<image src="/src{{imageUrl}}bg1.png?t={{Timestamp}}"></image> |
|
<view class="container"> |
|
<image class="frame" src="{{imageUrl}}bg18.png?t={{Timestamp}}"></image> |
|
<button |
|
wx:if="{{check1 && check2}}" |
|
class="phone-btn" |
|
open-type="getPhoneNumber" |
|
bindgetphonenumber="handleWxSubmit" |
|
> |
|
手机号快捷登录 |
|
</button> |
|
<button wx:else class="phone-btn" bind:tap="handleWxCheck">手机号快捷登录</button> |
|
<view class="argument"> |
|
<view class="a-col"> |
|
<image |
|
wx:if="{{check1}}" |
|
class="icon" |
|
src="{{imageUrl}}icon20.png?t={{Timestamp}}" |
|
bind:tap="handleCheck" |
|
data-key="check1" |
|
></image> |
|
<image |
|
wx:else |
|
class="icon" |
|
src="{{imageUrl}}icon19.png?t={{Timestamp}}" |
|
bind:tap="handleCheck" |
|
data-key="check1" |
|
></image> |
|
<view class="a-content"> |
|
我已阅读并同意 |
|
<text class="link" bind:tap="handleLink" data-url="/doc/pages/doc2/index">《个人信息及隐私协议政策》</text> |
|
</view> |
|
</view> |
|
<view class="a-col"> |
|
<image |
|
wx:if="{{check2}}" |
|
class="icon" |
|
src="{{imageUrl}}icon20.png?t={{Timestamp}}" |
|
bind:tap="handleCheck" |
|
data-key="check2" |
|
></image> |
|
<image |
|
wx:else |
|
class="icon" |
|
src="{{imageUrl}}icon19.png?t={{Timestamp}}" |
|
bind:tap="handleCheck" |
|
data-key="check2" |
|
></image> |
|
<view class="a-content"> |
|
我特此同意依照此 |
|
<text class="link" bind:tap="handleLink" data-url="/doc/pages/doc2/index">《个人信息及隐私保护政策》</text> |
|
规定收集我的个人敏感信息 |
|
</view> |
|
</view> |
|
</view> |
|
<view class="divider"> |
|
<van-divider contentPosition="center" textColor="rgba(34,34,34,0.2)">或者</van-divider> |
|
</view> |
|
<view class="other"> |
|
<view class="col" bind:tap="handleVisitors"> |
|
<image class="icon" src="{{imageUrl}}icon29.png?t={{Timestamp}}"></image> |
|
随便看看 |
|
</view> |
|
<view class="col" bind:tap="handleDoctor"> |
|
<image class="icon" src="{{imageUrl}}icon30.png?t={{Timestamp}}"></image> |
|
我是医生 |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
|
|
<van-popup show="{{ popupShow }}" round bind:close="onClose"> |
|
<view class="popup"> |
|
<view class="p-title">阅读并同意</view> |
|
<view class="p-content"> |
|
<text class="link" bind:tap="handleLink" data-url="/doc/pages/doc2/index">《个人信息及隐私保护政策》</text> |
|
</view> |
|
<view class="p-footer"> |
|
<view class="p-cancel" bind:tap="handlePopupCancel">取消</view> |
|
<button class="p-submit" open-type="getPhoneNumber" bindgetphonenumber="handleWxSubmit">同意并继续</button> |
|
</view> |
|
</view> |
|
</van-popup>
|
|
|