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

53 lines
1004 B

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <view class="pageBg">
  3. <view class="carc">
  4. <view class="icon_img">
  5. <image src="@/static/images/carIcon/paySuccess.png" mode=""></image>
  6. </view>
  7. <view class="text">恭喜您报名成功</view>
  8. <view class="txt">开启您的学车之旅吧</view>
  9. </view>
  10. <view class="footerBtn pad">
  11. <view class="btnBg" @click="goPage">开始学车</view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. methods: {
  18. goPage() {
  19. uni.switchTab({
  20. url: '/pages/tabbar/learnCar/index'
  21. })
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. .pageBg {
  28. .carc {
  29. width: 100%;
  30. height: 392rpx;
  31. display: flex;
  32. flex-direction: column;
  33. align-items: center;
  34. justify-content: center;
  35. .icon_img {
  36. width: 110rpx;
  37. height: 110rpx;
  38. }
  39. .text {
  40. font-size: 32rpx;
  41. color: #373A43;
  42. font-weight: 700;
  43. margin: 30rpx 0 20rpx 0;
  44. }
  45. .txt {
  46. font-size: 24rpx;
  47. color: #ccc;
  48. font-weight: 400;
  49. }
  50. }
  51. }
  52. </style>