1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

add miniprogram

This commit is contained in:
2022-11-05 15:28:03 +08:00
parent a410d97efd
commit 470d332fc2
155 changed files with 5371 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<!--pages/login/login.wxml-->
<view class="container">
<view class="login-icon">
<image class="login-img" src="../../icon/logo.webp"></image>
</view>
<view class="login-from">
<!--账号-->
<view class="inputView">
<image class="nameImage" src="../../icon/username.png"></image>
<label class="loginLab">账号</label>
<input class="inputText" placeholder="请输入账号" bindinput="usernameInput" />
</view>
<view class="line"></view>
<!--密码-->
<view class="inputView" style="margin-top:30px;">
<image class="keyImage" src="../../icon/password.png"></image>
<label class="loginLab">密码</label>
<input class="inputText" password="true" placeholder="请输入密码" bindinput="passwordInput" />
</view>
<view class="line"></view>
<!--按钮-->
<view class="loginBtnView" style="margin-top: 30px;">
<button class="loginBtn" type="primary" bindtap="login">登录</button>
</view>
<view class="loginBtnView">
<button class="loginBtn" type="primary" bindtap="visitor">访客申请</button>
</view>
</view>
</view>