refer.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view class="container">
  3. <image src="../../static/img/img34.png" mode="scaleToFill"></image>
  4. <view class="text">提交成功</view>
  5. <view class="shenhe">请耐心等待审核</view>
  6. <view class="btm">
  7. <view class="btn">返回首页</view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data () {
  14. return {}
  15. },
  16. methods: {}
  17. }
  18. </script>
  19. <style lang="scss">
  20. .container {
  21. background-color: #fff;
  22. width: 750rpx;
  23. height: 1334rpx;
  24. image {
  25. width: 300rpx;
  26. height: 250rpx;
  27. margin-top: 200rpx;
  28. margin-left: 210rpx;
  29. }
  30. .text {
  31. font-size: 40rpx;
  32. font-family: PingFang SC;
  33. font-weight: 500;
  34. color: #333333;
  35. line-height: 40rpx;
  36. padding-left: 300rpx;
  37. }
  38. .shenhe {
  39. font-size: 27rpx;
  40. font-family: PingFang SC;
  41. font-weight: 500;
  42. color: #B3B3B3;
  43. margin-top: 20rpx;
  44. display: flex;
  45. justify-content: center;
  46. }
  47. .btm {
  48. width: 350rpx;
  49. height: 80rpx;
  50. background: #6EAB4E;
  51. border-radius: 40rpx;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. margin-left: 200rpx;
  56. margin-top: 50rpx;
  57. .btn {
  58. font-size: 32rpx;
  59. font-family: PingFang SC;
  60. font-weight: 500;
  61. color: #FFFFFF;
  62. }
  63. }
  64. }
  65. </style>