多租户商城-商户小程序端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

111 lines
3.6 KiB

<template>
<view class="content">
<view class="topbg">
<image src="https://zk-cereshop.oss-cn-shenzhen.aliyuncs.com/z…043464279494de4b8129f5155135d6e_unsubscribeBg.png" mode=""></image>
</view>
<view class="content-text">
<view class="text-align fs32 fs-bold">
账户注销重要提醒
</view>
<view class="font-color-C5AA7B fs30 mar-top-20">
在您确认注销平台账户之前请您充分阅读理解并同意下列事项
</view>
<view class="mar-top-20">
如您不同意下列任一内容请不要进行账户注销操作您通过网络页面确认申请注销视为您同意接受本提醒所有内容
</view>
<p class="mar-top-20">1. 本帐号的个人资料和历史信息包括头像用户订单记录浏览记录收藏等都将无法找回</p>
<p class="mar-top-20">2. 你将无法登录使用本帐号</p>
<p class="mar-top-20">3. 通过本帐号使用授权登录或绑定本帐号后使用的相关记录将无法找回你将无法再登录使用上述服务你曾获得的虚拟权益等财产性利益视为你自动放弃将无法继续使用</p>
</view>
<view class="content-text">
<view class="fs32 fs-bold">
注销后您将放弃以下权限
</view>
<p class="mar-top-20">1. 您的所有交易记录将被清空请确保所有交易已完结且无纠纷账户注销后因历史交易可能产生的退换货维权相关的资金退回等权益将视作自动放弃</p>
<p class="mar-top-20">2. 您的身份信息账户信息积分会员权益等将被清空且无法恢复</p>
</view>
<view class="content-text">
<view class="fs32 fs-bold">
注销您需要满足以下条件
</view>
<p class="mar-top-20">1. 账户近期不存在交易您的账户无未完成订单无已完成但未满15天订单</p>
<p class="mar-top-20">2. 账户相关财产权益已结清您的账户不存在可提现的余额</p>
</view>
<view class="content-text">
<view class="agreement">
<image v-if="!agreement" src="http://36.138.125.206:8081/ceres-local-file/static/root/none.png" mode="" @click="agreement=true"></image>
<image v-else src="http://36.138.125.206:8081/ceres-local-file/static/root/solid.png" mode="" @click="agreement=false"></image>
<text class="font-color-999">我已阅读并同意</text>
<text class="font-color-C5AA7B" @click="protocol('app_user_agreement')">《账户注销重要提醒》</text>
</view>
<view class="btn" @click="consent">同意注销</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
agreement:false
}
},
methods:{
consent(){
if(!this.agreement){
uni.showToast({
title: '请先阅读并同意《账户注销重要提醒》',
duration: 2000,
icon: 'none'
});
}else{
uni.navigateTo({
url:'unsubscribeCode'
})
}
}
}
}
</script>
<style lang="scss" scoped>
.content {
background-color: #F5F5F5;
.topbg {
width: 100%;
height: 400rpx;
image {
width: 100%;
height: 100%;
}
}
.content-text {
position: relative;
top: -340rpx;
margin: 30rpx;
border-radius: 5rpx;
padding: 30rpx;
background-color: #FFFFFF;
.btn{
background: #333333;
color: #FFFFFF;
height: 88rpx;
width: 600rpx;
text-align: center;
line-height: 88rpx;
margin-top: 40rpx;
}
.agreement {
line-height: 50rpx;
image{
width: 34rpx;
height: 34rpx;
margin-right: 15upx;
}
}
}
}
</style>