学员端小程序
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.

59 lines
1.1 KiB

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