|
|
|
@ -1,5 +1,34 @@ |
|
|
|
|
<template> |
|
|
|
|
<view class="container"> |
|
|
|
|
<u-navbar |
|
|
|
|
leftText="返回" |
|
|
|
|
:title="title" |
|
|
|
|
:placeholder="true" |
|
|
|
|
:autoBack="true" |
|
|
|
|
bgColor="transparent" |
|
|
|
|
> |
|
|
|
|
<view |
|
|
|
|
class="u-nav-slot" |
|
|
|
|
slot="left" |
|
|
|
|
> |
|
|
|
|
<u-icon |
|
|
|
|
name="arrow-left" |
|
|
|
|
size="19" |
|
|
|
|
color="#000000" |
|
|
|
|
></u-icon> |
|
|
|
|
<u-line |
|
|
|
|
direction="column" |
|
|
|
|
:hairline="false" |
|
|
|
|
length="16" |
|
|
|
|
margin="0 8px" |
|
|
|
|
></u-line> |
|
|
|
|
<u-icon |
|
|
|
|
name="home" |
|
|
|
|
size="20" |
|
|
|
|
color="#000000" |
|
|
|
|
></u-icon> |
|
|
|
|
</view> |
|
|
|
|
</u-navbar> |
|
|
|
|
<u-parse :content="content" :tagStyle="style"></u-parse> |
|
|
|
|
|
|
|
|
|
<view class="btnBox" @click="logout"> |
|
|
|
@ -15,8 +44,8 @@ |
|
|
|
|
是否确认注销账号? |
|
|
|
|
</view> |
|
|
|
|
<view class="popupBtn"> |
|
|
|
|
<view class="sbtnBox a1">取消</view> |
|
|
|
|
<view class="sbtnBox a2">确认</view> |
|
|
|
|
<view class="sbtnBox a1" @click="close">取消</view> |
|
|
|
|
<view class="sbtnBox a2" @click="yes">确认</view> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
</u-popup> |
|
|
|
@ -27,6 +56,7 @@ |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
|
|
|
|
|
content: `<h3>你正在申请注销合成照相馆的账号</h3> |
|
|
|
|
<p>1.账户注销后该账户账户下的全部数据将被删除,包括但不限于面部档案,写真等</p> |
|
|
|
|
<p>2.正在创建或已付费但未生成完毕的内容,都将马上停止并销毁。</p> |
|
|
|
@ -39,7 +69,8 @@ |
|
|
|
|
span: 'font-size: 24rpx' |
|
|
|
|
}, |
|
|
|
|
//弹窗 |
|
|
|
|
show: false, |
|
|
|
|
show: false, |
|
|
|
|
title:"注销账号", |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
@ -54,12 +85,18 @@ |
|
|
|
|
this.show = false; |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
yes(){ |
|
|
|
|
this.close(); |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style lang="scss"> |
|
|
|
|
.container{padding: 20rpx 20rpx; height: auto; background-color: #F5F6FB;} |
|
|
|
|
page{ |
|
|
|
|
background: linear-gradient( 180deg, #D1DAFF 0%, rgba(209,218,255,0.6) 46%, rgba(254,254,255,0) 100%); |
|
|
|
|
} |
|
|
|
|
.container{padding: 20rpx 20rpx; height: auto;} |
|
|
|
|
.btnBox{ |
|
|
|
|
width: 400rpx; |
|
|
|
|
height: 88rpx; |
|
|
|
@ -82,7 +119,7 @@ |
|
|
|
|
.popupTop{ |
|
|
|
|
width: 600rpx; |
|
|
|
|
height: 140rpx; |
|
|
|
|
background: linear-gradient(to bottom, #D3D5FF 30%, #FFFFFF 70%); |
|
|
|
|
background: linear-gradient(to bottom, #D3D5FF 20%, #FFFFFF 50%); |
|
|
|
|
border-radius: 24rpx 24rpx 0rpx 0rpx; |
|
|
|
|
line-height: 140rpx; |
|
|
|
|
text-align: center; |
|
|
|
@ -113,6 +150,7 @@ |
|
|
|
|
border: 2rpx solid #4D94FF; |
|
|
|
|
text-align: center; |
|
|
|
|
border-radius: 44rpx; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.a1{ |
|
|
|
|