34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
<!--index.wxml-->
|
|
<view class="container">
|
|
<view class="login-icon">
|
|
<!-- <image class="login-img" src="/images/logo.png"></image> -->
|
|
</view>
|
|
<view class="login-from">
|
|
<form bindsubmit="formSubmit" class='form'>
|
|
<view class="myno">
|
|
<!-- 账号 -->
|
|
<view class="weui-cell weui-cell_input">
|
|
<image class="nameImage" src="/images/name.png"></image>
|
|
<view class="weui-cell__bd">
|
|
<input class="weui-input" name="no" bindinput="noinput" value='{{no}}' placeholder="请输入手机号..." />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="mypwd">
|
|
<!-- 密码 -->
|
|
<view class="weui-cell weui-cell_input">
|
|
<image class="nameImage" src="/images/key.png"></image>
|
|
<view class="weui-cell__bd">
|
|
<input class="weui-input" type="password" name="pwd" bindinput="pwdinput" placeholder="请输入密码..." value='{{pwd}}'/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!--按钮-->
|
|
<view class="loginBtnView">
|
|
<button class="loginBtn" size="{{primarySize}}" form-type='submit'>登录</button>
|
|
</view>
|
|
</form>
|
|
|
|
</view>
|
|
</view> |