武田小程序
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.

53 lines
2.0 KiB

<view
class="page"
style="background: url({{imageUrl}}login-bg.png?r={{Timestamp}}) no-repeat top center/100% 316rpx;padding-top:{{menuButtonInfo.bottom}}px;"
>
<view class="container">
<image class="label" src="{{imageUrl}}login-label.png?t={{Timestamp}}"></image>
<image class="title" src="{{imageUrl}}login-title.png?t={{Timestamp}}"></image>
<view class="tip">注意:该小程序仅支持具备执业资质的医生人群登录使用</view>
<view class="form">
<view class="tel">
<input
model:value="{{mobile}}"
always-embed
class="input"
placeholder-class="place-input"
7 months ago
type="number"
placeholder="请输入手机号"
/>
</view>
<view class="code">
<input
class="input"
always-embed
placeholder-class="place-input"
model:value="{{code}}"
type="number"
placeholder="请输入验证码"
/>
<view class="btn" bind:tap="getCode">{{codeText}}</view>
</view>
<view class="submit" bind:tap="handleSubmit">立即加入</view>
</view>
<view class="or">
<van-divider contentPosition="center" custom-style="color:rgba(153, 153, 153, 1);font-size:28rpx;">
或者
</van-divider>
</view>
7 months ago
<button wx:if="{{protool}}" class="tel-btn" open-type="getPhoneNumber" bindgetphonenumber="handleWxSubmit">
<image class="icon" src="{{imageUrl}}icon-tel.png?t={{Timestamp}}"></image>
手机号快捷登录
</button>
<button wx:else class="tel-btn" bind:tap="handleNavProtool" data-phone="1">
<image class="icon" src="{{imageUrl}}icon-tel.png?t={{Timestamp}}"></image>
手机号快捷登录
</button>
<view class="protool">
7 months ago
<radio class="radio" color="#00B4C5" checked="{{protool}}" bind:tap="handleProtool"></radio>
我已阅读并同意
<text class="link" bind:tap="handleNavProtool">《用户隐私协议》</text>
</view>
</view>
</view>