Files
BlockChainH5/pages/vip/examine.vue
zhangmanman 5d83183a89 修改文字
2021-09-27 14:59:47 +08:00

45 lines
1.0 KiB
Vue

<template>
<view>
<view class="examine">
<image class="examine-img" src="@/static/user/vipExamine.png" mode="widthFix"></image>
<view class="examine-name">
提交成功,请耐心等待~
</view>
<view class="examine-cont" @click="$Router.push({name: 'User'})">
我知道了
</view>
</view>
</view>
</template>
<script>
</script>
<style>
page {
background-color: #FFFFFF;
}
</style>
<style lang="scss" scoped>
.examine {
text-align: center;
padding: 340rpx 0 0;
.examine-img {
width: 50%;
}
.examine-name {
margin: 0 0 40rpx;
}
.examine-cont {
background: $mian-color;
border-radius: 6rpx;
height: 82rpx;
line-height: 82rpx;
font-size: $title-size-lg;
color: white;
display: inline-block;
padding: 0 100rpx;
}
}
</style>