连云港陪玩陪聊
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.
 
 
 
 
 
 

105 lines
2.5 KiB

<template>
<view class="zhuxiao">
<view class="title">注销后你账号将</view>
<view class="content">
<text>
1账号相关信息将被移除你的好友无法再与你取得联系(包括好友关注粉丝等);\n2账户剩余金币积分魅力值财富值VIP等收益相关数据在注销成功后将清空如产生利益损失由账号注销发起者承担;\n3绑定手机好或第三方账号将会解绑解绑后可再次注册账号;\n4你的实名信息会解绑解绑后可以再次绑定其他账号;\n5账号将会被系统收回并对平台其他用户开放申请;\n提示:一旦注销将无法撤销账号将自动清除15天后方可从新注册请慎重!!!
</text>
</view>
<view class="fd">
<view class="xieyi" @click="toToggle()">
<image v-if="isCheck" src="@/static/icon-select.png"></image>
<image v-else src="@/static/icon-select-on.png"></image>我已认真阅读且同意注销账号需要注意的内容
</view>
<view class="btns">
<view class="cancle">取消</view>
<view class="sure">确定</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
isCheck: false
};
}
}
</script>
<style scoped lang="scss">
page{
background-color: #fff;
}
.zhuxiao{
padding: 30rpx;
overflow: hidden;
.title{
font-weight: 500;
font-size: 36rpx;
color: #222222;
line-height: 40rpx;
margin-top: 20rpx;
}
.content{
font-weight: 500;
font-size: 26rpx;
color: #666666;
line-height: 40rpx;
text-align: left;
margin-top: 40rpx;
}
.fd{
width: 100%;
font-weight: 500;
font-size: 24rpx;
color: #222222;
position: fixed;
left: 0;
bottom: 100rpx;
z-index: 22;
padding: 0 30rpx;
box-sizing: border-box;
.xieyi{
display: flex;
align-items: center;
justify-content: flex-start;
image{
width: 35rpx;
height: 35rpx;
margin-right: 10rpx;
}
}
.btns{
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 50rpx;
text-align: center;
.cancle{
width: 300rpx;
height: 90rpx;
line-height: 90rpx;
background: #EDEDED;
border-radius: 90rpx;
font-weight: 500;
font-size: 30rpx;
color: #222222;
}
.sure{
width: 300rpx;
height: 90rpx;
line-height: 90rpx;
background: linear-gradient(0deg, #000000, #3D3B38);
border-radius: 90rpx;
font-weight: 500;
font-size: 30rpx;
color: #fff;
}
}
}
}
</style>