YZProjectCloud/yanzhu-ui-app/miniprogram/pages/login/login.wxml

39 lines
1.3 KiB
Plaintext
Raw Normal View History

2024-10-13 11:24:45 +08:00
<!--pages/login/login.wxml-->
<view class="login_logo">
2025-01-19 00:59:43 +08:00
<image src="https://xiangguan.sxyanzhu.com/profile/xmgl/static/sys_logo.png"></image>
2024-10-13 11:24:45 +08:00
</view>
<view class="login_title">
<text>数字工程项目管理系统</text>
</view>
2024-12-17 20:25:21 +08:00
<view wx:if="{{false}}" class="loadings">
<image src="/images/loading_i.gif"></image>
</view>
2024-10-13 11:24:45 +08:00
<view class="login_bg">
<view class="login_ex">请使用手机号登录</view>
<view class="login_input">
<input placeholder="输入登录手机" placeholder-style="color:#5e6ea2" bindinput="name" class="name" maxlength="11"/>
</view>
<view class="login_input">
<input placeholder="输入登录密码" placeholder-style="color:#5e6ea2" password="true" bindinput="psw" class="pass" maxlength="20" />
</view>
<van-row>
<van-col span="14">
<view class="login_input">
<input placeholder="请输入验证码" placeholder-style="color:#5e6ea2" bindinput="code" class="code" maxlength="5" />
</view>
</van-col>
<van-col span="10">
<view class="login_code">
<image src="{{ codeUrl }}" bindtap="loadCodeImage"/>
</view>
</van-col>
</van-row>
<view class="login_btn" bindtap="userLogin">
2024-10-13 15:40:15 +08:00
账 号 登 录
2024-10-13 11:24:45 +08:00
</view>
<view class="wxlogin_btn">
2025-02-05 21:34:18 +08:00
<button open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">手机号快捷登录</button>
2024-10-13 11:24:45 +08:00
</view>
</view>