32 lines
1.4 KiB
Plaintext
32 lines
1.4 KiB
Plaintext
<m-nav-bar navbarData="{{navbarData}}">
|
|
<view class="logo">
|
|
<van-image height="196rpx" src="https://gdxz-hospital.oss-cn-chengdu.aliyuncs.com/applet/doctor/static/images/logo2.png" fit="heightFix" />
|
|
</view>
|
|
<view class="fields">
|
|
<view class="phone_box">
|
|
<view class="country">+86</view>
|
|
<view class="phone">
|
|
<input placeholder-style="color:#c8c9cc;font-size:34rpx;" type="number" confirm-type="next" bindinput="phone_change" auto-focus placeholder="请输入手机号"/>
|
|
</view>
|
|
</view>
|
|
<van-field
|
|
model:value="{{ sms }}"
|
|
center
|
|
clearable
|
|
type="number"
|
|
label=""
|
|
placeholder="请输入短信验证码"
|
|
use-button-slot
|
|
placeholder-style="color:#c8c9cc;font-size:30rpx;"
|
|
>
|
|
<van-button disabled="{{btn_disabled}}" color="{{btn_color}}" slot="button" size="small" round plain type="primary" bind:click="getCodePhone">
|
|
{{btn_msg}}
|
|
</van-button>
|
|
</van-field>
|
|
</view>
|
|
<view class="btn">
|
|
<van-button color="#3CC7C0" disabled="{{login_disabled}}" custom-style="font-size: 36rpx;margin-bottom:30rpx;" type="primary" round block bind:click="mobileLogin">登录</van-button>
|
|
<van-checkbox value="{{ checked }}" bind:change="onChange">我已阅读并同意协议<text style="color: #4384FE;">《肝胆相照用户服务协议》</text></van-checkbox>
|
|
</view>
|
|
|
|
</m-nav-bar> |