You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<form bindsubmit="formSubmit" >
|
|
|
|
<view class="container">
|
|
|
|
<view class="login-icon">
|
|
|
|
|
|
|
|
<image class="login-img" src="../image/123.jpg"></image>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
<view class="login-from">
|
|
|
|
|
|
|
|
<!--账号-->
|
|
|
|
<view class="inputView">
|
|
|
|
<label class="loginLab">账号</label>
|
|
|
|
<input class="inputText" placeholder="请输入账号" bindinput="phoneInput" maxlength="15" name="userid"value="{{idTxt}}" />
|
|
|
|
|
|
|
|
</view>
|
|
|
|
<view class="line"></view>
|
|
|
|
|
|
|
|
<!--密码-->
|
|
|
|
<view class="inputView">
|
|
|
|
<label class="loginLab">密码</label>
|
|
|
|
<input class="inputText" name="userpassword" password="true" value="{{passwordTxt}}" placeholder="默认密码身份证后六位" bindinput="passwordInput" />
|
|
|
|
</view>
|
|
|
|
<!--按钮-->
|
|
|
|
<view class="loginBtnView">
|
|
|
|
|
|
|
|
<button class="loginBtn" loading="{{loading}}" plain="{{plain}}" disabled="{{disabled}}" bindtap="login" formType="submit">登录</button>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|