63 lines
2.2 KiB
Plaintext
63 lines
2.2 KiB
Plaintext
<!--pages/login/index.wxml-->
|
|
<view class="login_logo">
|
|
<image src="https://szgcwx.jhncidg.com/staticFiles/logo4.png"></image>
|
|
</view>
|
|
<view class="login_title">
|
|
<text>产发工程数字管理平台</text>
|
|
</view>
|
|
<view class="login_bg">
|
|
<view class="login_ex">请使用手机号登录</view>
|
|
<view class="login_input">
|
|
<input placeholder="输入登录手机" placeholder-style="color:#5e6ea2" bindinput="name" class="name" />
|
|
</view>
|
|
<view class="login_input">
|
|
<input placeholder="输入登录密码" placeholder-style="color:#5e6ea2" password="true" class="pass" bindinput="pass" />
|
|
</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="{{ code }}" bindtap="loadCodeImage" />
|
|
</view>
|
|
</van-col>
|
|
</van-row>
|
|
|
|
<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>
|
|
|
|
<!-- 用户协议确认 -->
|
|
<view class="agreement-section">
|
|
<view class="agreement-checkbox">
|
|
<checkbox-group bindchange="onAgreementChange">
|
|
<label class="agreement-label">
|
|
<checkbox value="agree" checked="{{agreementChecked}}" color="#667eea" style="position:relative;top:-2px;"/>
|
|
<text class="agreement-text">我已阅读并同意</text>
|
|
<text class="agreement-link" bindtap="showAgreement" style="color:#667eea">《用户服务协议》</text>
|
|
</label>
|
|
</checkbox-group>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="login_btn" bindtap="userLogin" style="opacity: {{agreementChecked ? 1 : 0.5}}">
|
|
确 定
|
|
</view>
|
|
<view class="pc">电脑端登陆 https://szgc.jhncidg.com</view>
|
|
<van-overlay show="{{show}}">
|
|
<view class="gif">
|
|
<image src="../../images/loding2.gif"></image>
|
|
<view>正在登陆中!请稍后...</view>
|
|
</view>
|
|
</van-overlay> |