1234567891011121314151617181920212223242526272829303132 |
- <!--pages/username_login/username_login.wxml-->
- <view class='main'>
- <image class='main_image' src='/images/login.png'></image>
- <view class='context'>
- <view class="logo_view"><image class="login_logo1" src="/images/login_logo1.png"></image></view>
- <view class="logo_view"><image class="login_logo2" src="/images/login_logo2.png"></image></view>
- <view class='context_input'>
- <view class='input_view'>
- <image class='account_img' src='/images/account.png'></image>
- <input placeholder='请输入您的账号' bindinput='inputAccount' maxlength='20' focus='true' placeholder-class='placeholder'></input>
- </view>
- <view class='input_view'>
- <image class='password_img' src='/images/password.png'></image>
- <input placeholder='请输入您的密码' value="{{password}}" focus="{{passwordFocus}}" maxlength='16' bindinput='inputPassword'type='password' placeholder-class='placeholder'></input>
- </view>
- </view>
- <!-- <view class="errorMsg"><text>{{errorMsg}}</text></view> -->
- <button class='login_button' bindtap="loginUser" >登录</button>
- <view class="other_button">
- <text class='vcode_login' bindtap='goToVcodeLogin'>验证码登录</text>
- <text class='register_view' bindtap='goToRegister'>注册账户</text>
- <text class='forget_view' bindtap='goToForget'>忘记密码</text>
- </view>
- <view class='phone_call_class' bindtap="phoneCall">
- <span>联系客服: {{servicetel}}</span>
- </view>
- <!-- <view style="width: 100%;margin-top:50rpx">
- <ad unit-id="adunit-8eb13875bcf592b0" ad-intervals="30"></ad>
- </view> -->
- </view>
- </view>
|