41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
<!--pages/login/login.wxml-->
|
|
<view class="login">
|
|
<image src="../../static/logo/login_img1.png" class="loginback_img" mode="widthFix"></image>
|
|
<view class="login-from">
|
|
<view class="login_title">
|
|
<text>登录</text>
|
|
</view>
|
|
<form bindsubmit="formSubmit" class='form'>
|
|
<view class="myno">
|
|
<!-- 用户名 -->
|
|
<view class="weui-cell weui-cell_input">
|
|
<image class="nameImage" src="../../static/logo/user.png"></image>
|
|
<view class="weui-cell__bd">
|
|
<input class="weui-input" bindinput="Userinput" placeholder="请输入用户名" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="mypwd">
|
|
<!-- 密码 -->
|
|
<view class="weui-cell weui-cell_input">
|
|
<image class="nameImage" src="../../static/logo/lock.png"></image>
|
|
<!-- <view class="weui-cell__hd">
|
|
<view class="weui-label">密码</view>
|
|
</view> -->
|
|
<view class="weui-cell__bd">
|
|
<input class="weui-input" type="password" bindinput="Pwdinput" placeholder="请输入密码" value='{{pwd}}'/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!--按钮-->
|
|
<view class="loginBtnView">
|
|
<button class="loginBtn" bindtap="Userlogin">登录</button>
|
|
</view>
|
|
</form>
|
|
<view bindtap="Register" class="register">
|
|
<text>还没有账号?点此注册。</text>
|
|
</view>
|
|
<view>{{infoMess}}</view>
|
|
<view>{{username}}</view>
|
|
</view>
|
|
</view> |