洛阳学员端
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.
 
 
 
 
 

54 lines
1004 B

<template>
<view class="pageBg">
<view class="carc">
<view class="icon_img">
<image src="@/static/images/carIcon/paySuccess.png" mode=""></image>
</view>
<view class="text">恭喜您报名成功</view>
<view class="txt">开启您的学车之旅吧</view>
</view>
<view class="footerBtn pad">
<view class="btnBg" @click="goPage">开始学车</view>
</view>
</view>
</template>
<script>
export default {
methods: {
goPage() {
uni.switchTab({
url: '/pages/tabbar/learnCar/index'
})
}
}
}
</script>
<style lang="scss" scoped>
.pageBg {
.carc {
width: 100%;
height: 392rpx;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.icon_img {
width: 110rpx;
height: 110rpx;
}
.text {
font-size: 32rpx;
color: #373A43;
font-weight: 700;
margin: 30rpx 0 20rpx 0;
}
.txt {
font-size: 24rpx;
color: #ccc;
font-weight: 400;
}
}
}
</style>