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.

58 lines
1.3 KiB

<template>
<view class="content">
<view class="successBox">
<view class="iconfont icon-success"></view>
<view class="h3">您已经注册成功</view>
<view class="p">请等待平台审核我们将在1-2个工作日通知您</view>
</view>
<navigator url="../../../../pages/home/home" open-type="switchTab"><view class="pinkBtn">返回首页</view></navigator>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
}
}
</script>
<style>
page{background: #fff;}
</style>
<style lang="scss" scoped >
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.successBox{
width:100%;
text-align: center;
padding:80rpx 40rpx 0 40rpx;
.iconfont{color:#39C852;font-size:120rpx;}
.h3{font-size: 40rpx;font-weight: 500;color: #333333;margin-top:40rpx;}
.p{font-size: 28rpx;font-weight: 400;color: #333333;margin-top:24rpx;}
}
.pinkBtn{
width: 670rpx;
height: 88rpx;
background: linear-gradient(90deg, #FF7E95 0%, #FF447B 100%);
border-radius: 44rpx;
font-size: 36rpx;
font-weight: 500;
color: #FFFFFF;
text-align: center;
line-height:88rpx;
margin:80rpx auto;
}
</style>