Sign.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <view class="sign">
  3. <statusBar :item="navBarData"></statusBar>
  4. <view class="signBox">
  5. <view class="img">
  6. <image src="https://teacherapi.cocorobo.cn/teaching-file/static//lg.png" mode="aspectFill"></image>
  7. </view>
  8. <text>报名已提交</text>
  9. <text>等待管理员审核</text>
  10. <button @click="gotoAct">查看课程</button>
  11. <text @click="gotoIndex">返回首页</text>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. navBarData: {
  20. title: '报名结果',
  21. btn: 1
  22. },
  23. };
  24. },
  25. methods: {
  26. gotoIndex() {
  27. uni.switchTab({
  28. url: '/pages/index/index'
  29. })
  30. },
  31. gotoAct(){
  32. uni.navigateTo({
  33. url:'/pages/mineActive/mineActive'
  34. })
  35. }
  36. }
  37. }
  38. </script>
  39. <style lang="scss" scoped>
  40. .sign {
  41. display: flex;
  42. justify-content: center;
  43. align-items: center;
  44. height: 100vh;
  45. .signBox {
  46. width: 100%;
  47. text-align: center;
  48. display: flex;
  49. flex-direction: column;
  50. justify-content: space-around;
  51. .img {
  52. width: 100%;
  53. height: 100px;
  54. image {
  55. width: 160rpx;
  56. height: 160rpx;
  57. }
  58. }
  59. text {
  60. &:nth-child(2) {
  61. font-size: 34rpx;
  62. margin-bottom: 8px;
  63. font-weight: 600;
  64. }
  65. &:nth-child(3) {
  66. font-size: 24rpx;
  67. color: rgb(144, 145, 147);
  68. margin-bottom: 15px;
  69. }
  70. &:nth-child(5) {
  71. font-size: 24rpx;
  72. }
  73. }
  74. button {
  75. width: 200rpx;
  76. height: 64rpx;
  77. color: white;
  78. line-height: 33px;
  79. background-color: #0056A8;
  80. font-size: 28rpx;
  81. border-radius: 100px;
  82. margin-bottom: 10px;
  83. }
  84. }
  85. }
  86. </style>