管灌系统农户端微信小程序(嘉峪关应用)
zuoxiao
2024-02-20 6b64f6dea245bb2935cf132a7d491414f1327195
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!--pages/login/login.wxml-->
<view class="login-container">
  <view>
    <image src="/images/login_bg.jpeg"></image>
  </view>
  <view class="input-wrapper">
    <view class="label-container">
      <text class="input-label">手机号:</text>
    </view>
    <input class="input" placeholder="请输入11位手机号" maxlength="11" />
  </view>
  <view class="input-wrapper">
    <view class="label-container">
      <text class="input-label"> 密码:</text>
    </view>
    <input class="input" type="password" placeholder="请输入密码" bindinput="bindPasswordInput" />
  </view>
  <view>
    <button class="login-button" bindtap="login">登录</button>
  </view>
 
 
  </view>