submitSuccess.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!-- 报名提交成功 -->
  2. <template>
  3. <view class="box">
  4. <!-- 导航栏 -->
  5. <u-navbar :is-back="false" title="" :background="{backgroundColor: '#3D5D4C'}" title-color="#fff"></u-navbar>
  6. <view class="box-content">
  7. <view class="box-content-image">
  8. <u-image src="../../../static/img/success-icon.png" mode="aspectFill" width="176" height="176"></u-image>
  9. </view>
  10. <view class="box-content-tips1">意向已提交</view>
  11. <view class="box-content-tips2">恭喜您,已将培训意向提交{{ schoolName }},后续老师会根据报名情况确定是否开班,并联系您办理报名入学手续。</view>
  12. <view class="box-content-btn" @click="returnIndex">返回首页</view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. schoolName: ''
  21. }
  22. },
  23. onLoad(page) {
  24. const { schoolName } = page
  25. this.schoolName = schoolName
  26. },
  27. methods: {
  28. returnIndex() {
  29. uni.switchTab({
  30. url: '../../index/index'
  31. })
  32. }
  33. }
  34. }
  35. </script>
  36. <style lang="scss" scoped>
  37. .box {
  38. &-content {
  39. text-align: center;
  40. padding: 0 90rpx;
  41. margin-top: 168rpx;
  42. &-image {
  43. width: 176rpx;
  44. height: 176rpx;
  45. margin: 0 auto;
  46. }
  47. &-tips1 {
  48. font-size: 40rpx;
  49. color: #000;
  50. margin-top: 36rpx;
  51. }
  52. &-tips2 {
  53. color: #545454;
  54. font-size: 26rpx;
  55. line-height: 40rpx;
  56. margin-top: 22rpx;
  57. }
  58. &-btn {
  59. width: 388rpx;
  60. height: 80rpx;
  61. line-height: 80rpx;
  62. text-align: center;
  63. background-color: #709078;
  64. border-radius: 40rpx;
  65. font-size: 30rpx;
  66. color: #fff;
  67. margin: 360rpx auto 0;
  68. }
  69. }
  70. }
  71. </style>