submitSuccess.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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">恭喜您,已将培训意向提交贵州工业职业技术学院,后续老师会根据报名情况确定是否开班,并联系您办理报名入学手续。</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. }
  21. },
  22. methods: {
  23. returnIndex() {
  24. uni.switchTab({
  25. url: '../../index/index'
  26. })
  27. }
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. .box {
  33. &-content {
  34. text-align: center;
  35. padding: 0 90rpx;
  36. margin-top: 168rpx;
  37. &-image {
  38. width: 176rpx;
  39. height: 176rpx;
  40. margin: 0 auto;
  41. }
  42. &-tips1 {
  43. font-size: 40rpx;
  44. color: #000;
  45. margin-top: 36rpx;
  46. }
  47. &-tips2 {
  48. color: #545454;
  49. font-size: 26rpx;
  50. line-height: 40rpx;
  51. margin-top: 22rpx;
  52. }
  53. &-btn {
  54. width: 388rpx;
  55. height: 80rpx;
  56. line-height: 80rpx;
  57. text-align: center;
  58. background-color: #709078;
  59. border-radius: 40rpx;
  60. font-size: 30rpx;
  61. color: #fff;
  62. margin: 360rpx auto 0;
  63. }
  64. }
  65. }
  66. </style>