tjSuccess.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="container">
  3. <view class="re-succ-box">
  4. <image class="re-succ-img" src="https://zhibo.liuniu946.com/img/success.png"></image>
  5. <view class="re-succ-tit">提交成功</view>
  6. <view class="re-succ-audit">请耐心等待后台审核</view>
  7. <view class="re-succ-btn" @click="goBack()">返回首页</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. methods: {
  14. goBack() {
  15. uni.switchTab({
  16. url: '/pages/index/index'
  17. })
  18. }
  19. }
  20. }
  21. </script>
  22. <style lang="scss">
  23. page {
  24. height: 100%;
  25. }
  26. .container {
  27. height: 100%;
  28. background: #FFFFFF;
  29. .line-top {
  30. width: 750rpx;
  31. height: 20rpx;
  32. background: #F5F5F5;
  33. }
  34. .re-succ-box {
  35. padding-top: 170rpx;
  36. display: flex;
  37. flex-direction: column;
  38. align-items: center;
  39. .re-succ-img {
  40. padding-right: 50rpx;
  41. width: 350rpx;
  42. height: 250rpx;
  43. display: block;
  44. }
  45. .re-succ-tit {
  46. // margin-top: -26rpx;
  47. font-size: 40rpx;
  48. font-family: PingFang SC;
  49. font-weight: 500;
  50. color: #333333;
  51. }
  52. .re-succ-audit{
  53. // margin-top: -12rpx;
  54. font-size: 27rpx;
  55. font-family: PingFang SC;
  56. font-weight: 500;
  57. color: #B3B3B3;
  58. line-height: 40rpx;
  59. }
  60. .re-succ-btn {
  61. margin-top: 40rpx;
  62. width: 350rpx;
  63. height: 80rpx;
  64. background: linear-gradient(180deg, #FD4646, #FF3535);
  65. border-radius: 40px;
  66. font-size: 36rpx;
  67. font-family: PingFang SC;
  68. font-weight: 500;
  69. color: #FFFFFF;
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. }
  74. }
  75. }
  76. </style>