joinsuccess.vue 792 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <view class="joinsuccess">
  3. <image src="../../static/images/joinsuccess.png" mode=""></image>
  4. <navigator url="/pages/index/index" open-type="switchTab" >
  5. <view class="backhome">
  6. 返回首页
  7. </view>
  8. </navigator>
  9. </view>
  10. </template>
  11. <script>
  12. </script>
  13. <style lang="scss" scoped>
  14. page {
  15. height: 100%;
  16. }
  17. .joinsuccess {
  18. width: 750rpx;
  19. height: 100%;
  20. position: relative;
  21. image {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. .backhome {
  26. width: 464rpx;
  27. height: 77rpx;
  28. border: 2rpx solid #FFFFFF;
  29. border-radius: 38rpx;
  30. font-size: 34rpx;
  31. font-family: PingFang SC;
  32. font-weight: bold;
  33. color: #FFFFFF;
  34. line-height: 77rpx;
  35. text-align: center;
  36. position: absolute;
  37. bottom: 89rpx;
  38. right: 0;
  39. left: 0;
  40. margin: auto;
  41. }
  42. }
  43. </style>