| | |
| | | <!--pages/login/login.wxml--> |
| | | <view class="login-container"> |
| | | <view> |
| | | <image src="/images/login_bg.jpeg"></image> |
| | | <view class="logo-container"> |
| | | |
| | | </view> |
| | | <view class="input-wrapper"> |
| | | <view class="label-container"> |
| | | <text class="input-label">手机号:</text> |
| | | |
| | | <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> |
| | | <input class="input" placeholder="请输入11位手机号" maxlength="11" /> |
| | | </view> |
| | | <view class="input-wrapper"> |
| | | <view class="label-container"> |
| | | <text class="input-label"> 密码:</text> |
| | | |
| | | <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> |
| | | <input class="input" type="password" placeholder="请输入密码" bindinput="bindPasswordInput" /> |
| | | |
| | | <view class="login-btn-container"> |
| | | <button class="login-button" bindtap="login">登录</button> |
| | | </view> |
| | | </view> |
| | | <view> |
| | | <button class="login-button" bindtap="login">登录</button> |
| | | |
| | | <view class="project-info {{selectedProject === 'MQ' ? 'mq' : 'jyg'}}"> |
| | | <text>当前项目: {{projectName}}</text> |
| | | </view> |
| | | |
| | | |
| | | </view> |
| | | </view> |