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
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>
|
|
|