liukangdong
2024-09-29 b2d360d9113b6955287108ca9e90d76a1f3c1419
wechat_jiaxuan/pages/sets/index.wxml
@@ -1,10 +1,10 @@
<view class="container">
  <view class="list">
    <view class="line" bindtap="changeDeal">
    <view class="line" data-label="SERVER_AGREEMENT" bindtap="changeDeal">
      <view class="name">《ZBOM用户服务协议》</view>
      <image class="icon" src="../../static/icon/home_ar@2x.png" mode="widthFix"></image>
    </view>
    <view class="line" bindtap="changeDeal">
    <view class="line" data-label="PRIVACY_AGREEMENT" bindtap="changeDeal">
      <view class="name">《ZBOM用户隐私协议》</view>
      <image class="icon" src="../../static/icon/home_ar@2x.png" mode="widthFix"></image>
    </view>
@@ -14,14 +14,25 @@
    </view>
  </view>
  <!--  -->
  <van-popup show="{{ show }}" bind:close="onClose">
  <van-popup show="{{ show }}" round bind:close="onClose">
    <view class="modal">
        <view class="title">注销提醒</view>
        <view class="text">如您不再使用此账号,可以将其注销。账号成功注销后,其下所有数据将会被删除并将无法恢复,请谨慎操作</view>
        <view class="btns">
          <view class="btn">确认注销</view>
          <view class="btn" bindtap="onSubLgout">确认注销</view>
          <view class="btn cancel" bindtap="onClose">还是算了</view>
        </view>
    </view>
  </van-popup>
  <van-popup show="{{ showLogout }}" close-on-click-overlay="{{false}}" round bind:close="appClose">
    <view class="modal">
        <view class="title">提醒</view>
        <view class="text">你是否要退出该小程序吗</view>
        <view class="btns">
          <navigator class="btn cancel" target="miniProgram" open-type="exit">确认退出</navigator>
          <view class="btn" bindtap="backHome">返回首页</view>
        </view>
    </view>
  </van-popup>
</view>