沙盘演示系统应用的微信小程序
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!--pages/login/login.wxml-->
<view class="login-container">
  <view>
    <image src="/images/login_bg.jpeg"></image>
  </view>
  <view class="input-wrapper">
    <input class="input" placeholder="请输入11位手机号" maxlength="11" bindinput="bindMobileInput" />
  </view>
  <view class="input-wrapper">
    <input class="input" type="number" placeholder="请输入验证码"  />
    <button class="code-button" wx:if="{{!codeSent}}" bindtap="sendCode">获取验证码</button>
    <button class="code-button" wx:if="{{codeSent}}" disabled>重新获取({{countdown}}s)</button>
  </view>
  <view>
    <button class="login-button" bindtap="login">登录</button>
  </view>
 
 
</view>