62 lines
1.2 KiB
Vue
62 lines
1.2 KiB
Vue
<template>
|
||
<view class="content">
|
||
<image class="cover" src="@/static/dev/guide_cover_00.png" mode="widthFix"></image>
|
||
<view class="title">恭喜您,已注册成功</view>
|
||
<view class="sub-title">开通会员认证企业信息立即获得授信易货额,即可开始易货之旅</view>
|
||
<button class="vip-button" type="default" @click="$Router.push({name: 'Vip'})">开通会员</button>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
|
||
};
|
||
},
|
||
onNavigationBarButtonTap(e){
|
||
this.$Router.pushTab({name: "Equity"})
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.content{
|
||
padding: $padding * 2;
|
||
background: white;
|
||
height: 100vh;
|
||
width: 100vw;
|
||
box-sizing: border-box;
|
||
@extend .vertical;
|
||
text-align: center;
|
||
.cover{
|
||
width: 46vw;
|
||
margin-bottom: 10vh;
|
||
}
|
||
.title{
|
||
font-size: $title-size + 14;
|
||
font-weight: bold;
|
||
line-height: 90rpx;
|
||
}
|
||
.sub-title{
|
||
font-size: $title-size-m;
|
||
color: $text-gray;
|
||
text-align: center;
|
||
}
|
||
|
||
.vip-button{
|
||
margin-top: 10vh;
|
||
background: $text-price;
|
||
border-radius: 0;
|
||
height: 90rpx;
|
||
line-height: 90rpx;
|
||
font-size: $title-size;
|
||
color: white;
|
||
font-weight: bold;
|
||
&::after{
|
||
border: none;
|
||
}
|
||
}
|
||
}
|
||
</style>
|