jhwxapp/miniprogram/pages/login/index.wxml

50 lines
1.6 KiB
Plaintext
Raw Normal View History

2024-03-19 23:25:38 +08:00
<!--pages/login/index.wxml-->
2023-09-01 02:28:39 +08:00
<view class="login_logo">
2024-03-19 23:25:38 +08:00
<image src="https://szgcwx.jhncidg.com/staticFiles/logo4.png"></image>
2023-08-30 23:57:34 +08:00
</view>
2023-08-10 01:21:29 +08:00
<view class="login_title">
2024-01-21 20:09:42 +08:00
<text>产发工程数字管理平台</text>
2023-08-10 01:21:29 +08:00
</view>
2024-03-17 16:19:31 +08:00
<view class="login_bg">
2023-09-24 23:17:05 +08:00
<view class="login_ex">请使用手机号登录</view>
2023-08-10 01:21:29 +08:00
<view class="login_input">
2024-03-17 16:19:31 +08:00
<input placeholder="输入登录手机" placeholder-style="color:#5e6ea2" bindinput="name" class="name" />
2023-08-10 01:21:29 +08:00
</view>
<view class="login_input">
2024-03-17 16:19:31 +08:00
<input placeholder="输入登录密码" placeholder-style="color:#5e6ea2" password="true" class="pass" bindinput="pass" />
2023-08-10 01:21:29 +08:00
</view>
2024-03-17 16:19:31 +08:00
<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="{{ code }}" bindtap="loadCodeImage" />
</view>
</van-col>
</van-row>
2024-05-03 10:37:27 +08:00
<view class="lv" wx:if="{{true}}">
<van-row>
<van-col span="12">
<text style="color:#191d28;">验证码登录</text>
</van-col>
<van-col span="12" class="lv-r">
<van-icon name="question" /><text bindtap="updatePs">忘记密码?立即修改</text>
</van-col>
</van-row>
</view>
2023-08-10 01:21:29 +08:00
</view>
2024-03-17 16:19:31 +08:00
<view class="login_btn" bindtap="userLogin">
确 定
</view>
2024-05-03 10:37:27 +08:00
<view class="pc">电脑端登陆 https://szgc.jhncidg.com</view>
2024-03-17 16:19:31 +08:00
<van-overlay show="{{show}}">
<view class="gif">
<image src="../../images/loding2.gif"></image>
<view>正在登陆中!请稍后...</view>
</view>
</van-overlay>