<view class="container">
|
<view class="list">
|
<view class="line" data-index="0" bindtap="changeDeal">
|
<view class="name">《ZBOM用户服务协议》</view>
|
<image class="icon" src="../../static/icon/home_ar@2x.png" mode="widthFix"></image>
|
</view>
|
<view class="line" data-index="1" 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="showLogout">
|
<view class="name">切换账号</view>
|
<image class="icon" src="../../static/icon/home_ar@2x.png" mode="widthFix"></image>
|
</view> -->
|
|
<view class="outbut" >
|
<button bindtap="showLogout" class="btn">退出登录</button>
|
</view>
|
</view>
|
|
<!-- -->
|
<van-popup show="{{ show }}" bind:close="onClose">
|
<view class="modal">
|
<view class="title">退出登录提醒</view>
|
<view class="text">您确认退出当前登录账号吗?</view>
|
<view class="btns">
|
<view class="btn" bind:tap="logout">确认退出</view>
|
<view class="btn cancel" bindtap="onClose">还是算了</view>
|
</view>
|
</view>
|
</van-popup>
|
</view>
|