106 lines
4.5 KiB
Plaintext
106 lines
4.5 KiB
Plaintext
<view class="newLogin">
|
|
<view class="logo">
|
|
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/newLogin_logo.png" mode="" />
|
|
</view>
|
|
<view class="text">人人爱净水</view>
|
|
|
|
|
|
<view wx:if="{{LoginType}}">
|
|
<view class="login-form">
|
|
<input class="login-input" value="{{account}}" bindinput="accountIpt" bindfocus="onFocus" placeholder="请输入账号" />
|
|
<input class="login-input" password value="{{password}}" bindinput="passwordIpt" placeholder="请输入密码" />
|
|
</view>
|
|
<view class="login-button">
|
|
<button class="login-btn" bindtap="accountLogin2">
|
|
登录
|
|
</button>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 用户登录 -->
|
|
<view wx:if="{{types == 1 && !LoginType}}">
|
|
<view class="login-button">
|
|
|
|
<button class="login-btn" wx:if="{{checked }}" bind:tap="userLogin">
|
|
用户快捷登录
|
|
</button>
|
|
|
|
<!-- && !userLogin -->
|
|
<!-- <button class="login-btn" wx:if="{{checked }}" open-type="getPhoneNumber" bindtap="headerLoginClick" bindgetphonenumber="getPhoneNumber">
|
|
用户快捷登录
|
|
</button> -->
|
|
|
|
<button class="login-btn" bind:tap="showTo" wx:if="{{!checked}}">
|
|
用户快捷登录
|
|
</button>
|
|
</view>
|
|
<view class="agreement">
|
|
<van-checkbox value="{{ checked }}" bind:change="onChange"></van-checkbox>
|
|
<text>我已阅读并同意</text>
|
|
<text class="link" bindtap="navigateToAgreement">《用户服务协议和隐私政策》</text>
|
|
</view>
|
|
<view class="changeLogin mt" bind:tap="changeTypes" data-types="2">
|
|
合作伙伴
|
|
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/newLogin_more.png" mode="widthFix" />
|
|
</view>
|
|
</view>
|
|
<!-- 师傅经销商 -->
|
|
<view wx:if="{{types != 1 && !LoginType}}">
|
|
<view class="login-button" wx:if="{{types == 2}}">
|
|
|
|
<button class="login-btn" wx:if="{{checked}}" bind:tap="masterLogin">
|
|
手机号快捷登录
|
|
</button>
|
|
|
|
<!-- && !masterLogin -->
|
|
<!-- <button class="login-btn" wx:if="{{checked }}" open-type="getPhoneNumber" bindtap="headerLoginClick2" bindgetphonenumber="getPhoneNumber2">
|
|
手机号快捷登录
|
|
</button> -->
|
|
|
|
<button class="login-btn" bind:tap="showTo" wx:if="{{!checked}}">
|
|
手机号快捷登录
|
|
</button>
|
|
</view>
|
|
|
|
<view wx:if="{{types == 3}}">
|
|
<view class="login-form">
|
|
<view class="ipt">
|
|
<van-field value="{{ account }}" placeholder="请输入账号" bind:change="accountIpt1" />
|
|
</view>
|
|
<view class="ipt">
|
|
<van-field value="{{ password }}" type="password" placeholder="请输入密码" bind:change="passwordIpt1" />
|
|
</view>
|
|
</view>
|
|
<view class="login-button mt2">
|
|
<button class="login-btn" wx:if="{{checked}}" bindtap="accountLogin">
|
|
登录
|
|
</button>
|
|
|
|
<button class="login-btn" wx:if="{{!checked}}" bind:tap="showTo">
|
|
登录
|
|
</button>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="choseType">
|
|
<van-radio-group value="{{ types }}" bind:change="onChangeLoginType">
|
|
<van-radio name="3">我是经销商</van-radio>
|
|
<van-radio name="2">我是师傅</van-radio>
|
|
</van-radio-group>
|
|
</view>
|
|
<view class="agreement">
|
|
<van-checkbox value="{{ checked }}" bind:change="onChange"></van-checkbox>
|
|
<text>我已阅读并同意</text>
|
|
<text class="link" bindtap="navigateToAgreement">《用户服务协议和隐私政策》</text>
|
|
</view>
|
|
|
|
<view class="msg">
|
|
您好,本服务仅为已开通【人人爱净水】账号的 经销商提供服务。若您尚未完成账号开通,建议 暂不进行授权登录。如有任何使用疑问,欢迎联 系【人人爱净水】客服400-699-8890。
|
|
</view>
|
|
|
|
<view class="changeLogin" bind:tap="changeTypes" data-types="1">
|
|
用户登录
|
|
<image src="https://wechat-img-file.oss-cn-beijing.aliyuncs.com/newLogin_more.png" mode="widthFix" />
|
|
</view>
|
|
</view>
|
|
</view> |