33 lines
1.5 KiB
Plaintext
33 lines
1.5 KiB
Plaintext
<view class="container">
|
|
<view class="tui-navigatorbar">
|
|
<image wx:if="{{ navbarData.showCapsule==1 }}" class="tui-navigatorbar-back" bindtap="_navback" src="../../TUIKit/static/assets/ic_back_black.svg" />
|
|
<view class="conversation-title">{{ navbarData.title }}</view>
|
|
</view>
|
|
<view class="box">
|
|
<view class="top">
|
|
<view class="logo">
|
|
<van-image fit="heightFix" height="56rpx" src="https://gdxz-hospital.oss-cn-chengdu.aliyuncs.com/applet/doctor/static/images/logo.png" use-loading-slot>
|
|
<van-loading slot="loading" type="spinner" size="20" vertical />
|
|
</van-image>
|
|
</view>
|
|
<view class="msg">你好!欢迎登录肝胆相照互联网医院</view>
|
|
</view>
|
|
|
|
<view class="btn">
|
|
<van-button
|
|
wx:if="{{ checked }}"
|
|
open-type="getPhoneNumber"
|
|
bindgetphonenumber="getPhoneNumber"
|
|
color="#09BB07" custom-style="font-size: 36rpx;" type="primary" round block>微信授权手机号登录</van-button>
|
|
<van-button
|
|
wx:else
|
|
bindtap="getPhoneNumber"
|
|
color="#09BB07" custom-style="font-size: 36rpx;" type="primary" round block>微信授权手机号登录</van-button>
|
|
<van-checkbox value="{{ checked }}" bind:change="onChange">我已阅读并同意协议<text style="color: #4384FE;">《肝胆相照用户服务协议》</text></van-checkbox>
|
|
</view>
|
|
|
|
<view class="bottom">
|
|
<text class="bottom_txt" bindtap="go" data-url="/Pages/mobile_login/index">输入手机号登录/注册</text>
|
|
</view>
|
|
</view>
|
|
</view> |