ll
liukangdong
2024-08-27 ec68191c2bde5d903193cfe85cd90c188b4abdaa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<view class="container">
  <image class="avatar" src="../../static/icon/logo.png"></image>
  <view class="home_title">志邦优家</view>
  <view class="placeholder9">最懂你的营销助手</view>
  <!--  -->
  <view class="btns">
    <block wx:if="{{ status == '0' }}">
      <button hover-class="none" class="btn speedy" wx:if="{{ !agreementFalg }}" bindtap="loginIn">手机号快捷登录</button>
      <button wx:else class="btn speedy" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">手机号快捷登录</button>
      <view bindtap="changeStatus" class="btn">手机验证码登录</view>
    </block>
    <block wx:if="{{ status == '1' }}">
      <view class="line">
        <image class="icon" src="../../static/login_ic_phone@2x.png" mode="widthFix"></image>
        <van-field class="input" type="number" maxlength="{{ 11 }}" border="{{false}}" model:value="{{ phone }}" placeholder="请输入手机号" />
        <view bindtap="getCode" wx:if="{{ countDown === 0 }}" class="get_code primary">获取验证码</view>
        <view wx:else class="placeholder9">{{ countDown }}s</view>
      </view>
      <view class="line">
        <image class="icon" src="../../static/login_ic_password@2x.png" mode="widthFix"></image>
        <van-field type="number" class="input" maxlength="{{ 6 }}" border="{{false}}" model:value="{{ code }}" placeholder="请输入验证码" />
      </view>
      <view bindtap="loginPhone" class="btn speedy sub_btn">立即登录</view>
    </block>
    <view class="protocol">
      <van-checkbox value="{{ agreementFalg }}" checked-color="{{primary}}" shape="round" bind:change="agreementChange"></van-checkbox>
      <view class="content">
        <text>我已阅读并同意</text>
        <text data-index="0" bindtap="onOpen" class="primary">《ZBOM用户服务协议》</text>
        <text>及</text>
        <text data-index="1" bindtap="onOpen" class="primary">《ZBOM用户隐私政策》</text>
      </view>
    </view>
  </view>
  <!--  -->
  <van-popup position="bottom" show="{{ showModal }}" round bind:close="onClose">
    <view class="modal">
      <view class="content">
        <mp-html content="{{activeHtml}}"></mp-html>
        <!-- <rich-text nodes="{{activeHtml}}"></rich-text> -->
      </view>
      <view style="bottom: {{ bottomLift }}px" class="btns">
        <view data-flag="{{true}}" bindtap="handleJudge" class="agree">同意</view>
        <view data-flag="{{false}}" bindtap="handleJudge" class="reject">不同意并退出</view>
      </view>
    </view>
  </van-popup>
  <!--  -->
  <view class="tip">本小程序功能仅限于志邦家居及经销商员工使用</view>
</view>