first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<view class="account">
<image class="login_back" src="../../images/img/loginBack.png"></image>
<view class="login" wx:if="{{ isShowLogin }}">
<view class="inpu bottom van-hairline--bottom">
<text class="iconfont icon-shouji"></text>
<input type="text" bindinput="bindPhoneInput" placeholder="输入手机号" />
</view>
<view class="inpu van-hairline--bottom">
<text class="iconfont icon-31mima"></text>
<input type="password" bindinput="bindPwdInput" placeholder="输入密码" />
</view>
<view class="login_submit" bindtap="UserLogin">登 录</view>
</view>
<view class="register" wx:else>
<view class="inpu bottom van-hairline--bottom">
<text class="iconfont icon-shouji"></text>
<input type="text" bindinput="bindPhoneInput" placeholder="输入手机号" />
</view>
<view class="inpu van-hairline--bottom">
<text class="iconfont icon-31mima"></text>
<input type="password" bindinput="bindPwdInput" placeholder="输入密码" />
</view>
<view class="inpu van-hairline--bottom">
<text class="iconfont icon-31mima"></text>
<input type="password" bindinput="bindConfirmPwdInput" placeholder="输入确认密码" />
</view>
<view class="login_submit" bindtap="UserRegister">注 册</view>
</view>
<view class="other" bindtap="changeStatus">{{ isShowLogin ? '注册账号': '立即登录' }}</view>
</view>