k94314517
2024-08-15 89e7ed902461f28d6a7dd3e6c927eaf40b154f5e
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
<view>
  <view class="container">
    <view class="logo_wrap">
      <image src="../../static/icon/logo.png"></image>
    </view>
    <view class="title">欢迎来到志邦家居选志邦,实现您对家的美好想象</view>
    <view class="placeholder9">您喜欢的样子,我都有~</view>
    <view class="main_footer">
      <view class="line">
        <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>
      <button hover-class="none" class="btn" wx:if="{{ !agreementFalg }}" bindtap="loginIn">手机号快捷登录</button>
      <button hover-class="none" wx:else class="btn" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">手机号快捷登录</button>
    </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="btn">不同意并退出</view>
      </view>
    </view>
  </van-popup>
</view>