33 lines
1.5 KiB
Plaintext
33 lines
1.5 KiB
Plaintext
<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> |