管灌系统农户端微信小程序(嘉峪关应用)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!--pages/login/login.wxml-->
<view class="login-container">
  <view class="logo-container">
    
  </view>
  
  <view class="form-container">
    <view class="title">用户登录</view>
    
    <view class="input-wrapper">
      <view class="input-icon user-icon"></view>
      <input class="input" type="number" placeholder="请输入手机号" maxlength="11" bindinput="bindPhoneInput" />
    </view>
    
    <view class="input-wrapper">
      <view class="input-icon lock-icon"></view>
      <input class="input" type="number" placeholder="请输入验证码" maxlength="6" bindinput="bindCodeInput" />
      <view class="code-button" bindtap="sendVerificationCode">
        <text>{{codeText}}</text>
      </view>
    </view>
    
    <view class="login-btn-container">
      <button class="login-button" bindtap="login">登录</button>
    </view>
  </view>
  
  <view class="project-info {{selectedProject === 'MQ' ? 'mq' : 'jyg'}}">
    <text>当前项目: {{projectName}}</text>
  </view>
 
</view>