55 lines
1.1 KiB
Vue
55 lines
1.1 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="toUser">
|
|
我知道了
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
methods:{
|
|
toUser(){
|
|
console.log('trule')
|
|
uni.switchTab({
|
|
url:'/pages/user/index'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</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>
|