12345678910111213141516171819202122 |
- <!--login.wxml-->
- <view class="login-page" wx:if="{{isShowLogin}}">
- <image src="/assets/img/login_logo.png" mode="aspectFit" class="head-img"/>
- <input class="{{nameFocus?'input-active':''}}" placeholder="用户名" maxlength="20" value="{{name}}" bindfocus="nameBindfocus" bindinput="inputName"></input>
- <input class="{{passwordFocus?'input-active':''}}" placeholder="密码" password="true" maxlength="20" value="{{password}}" bindfocus="passwordBindfocus" bindinput="inputPassword"></input>
- <view class="login" bindtap="login" hover-class="hover" hover-start-time="0" hover-stay-time="100">登录</view>
- <view class="weui-btn-area" wx:if="{{registerEnable}}">
- <text class="register-btn" bindtap="toRegister">注册</text>
- </view>
- <!-- <view class="experience-area">
- <text >各位亲爱的小伙伴,获取试用的登陆账号和密码,请先关注官方微信公众号,即可推送。点击下图后,长按即可扫码关注!</text>
- <image class="mpwx-img" src="https://www.o2oa.net/imagex/experience/zoneland_mpweixin.jpg" bindtap="openMPWxImage" bindlongpress="openMPWxImage"/>
- </view> -->
- <!-- <view class="experience-area" bindtap="getDemoAccounts">
- <text style="margin: 20rpx;">点击获取体验账号</text>
- </view> -->
- </view>
- <!-- <view class="zixun" ><contact-button type="default-dark" size="100" class="kf"></contact-button></view>
- <view class="zixun_text">联系我们</view> -->
|