submitted.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <view class="container">
  3. <view class="top"></view>
  4. <view class="head">
  5. <span class="cuIcon-back" @click="goBack"></span>
  6. <view class="case"> 已提交 </view>
  7. </view>
  8. <view class="content">
  9. <image class="icon" src="/static/finance/status/success.png" />
  10. <text class="title">提交成功</text>
  11. <text class="desc">已提交审核,请耐心等待平台审核</text>
  12. <view class="btn" @click="goBack">返回账户</view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. methods: {
  19. goBack() {
  20. uni.navigateTo({
  21. url: '/pages/finance/balance',
  22. });
  23. },
  24. },
  25. };
  26. </script>
  27. <style lang="scss" scoped>
  28. .container {
  29. width: 100vw;
  30. height: 100vh;
  31. overflow: auto;
  32. background: #ffffff;
  33. font-family: Source Han Sans SC;
  34. /*#ifdef APP-PLUS*/
  35. .top {
  36. width: 100%;
  37. height: var(--status-bar-height);
  38. background: #fff;
  39. }
  40. /*#endif*/
  41. .head {
  42. width: 100%;
  43. height: 112rpx;
  44. padding: 20rpx;
  45. display: flex;
  46. align-items: center;
  47. background: #fff;
  48. position: relative;
  49. border-bottom: 1rpx solid #eeeeee;
  50. .cuIcon-back {
  51. font-size: 40rpx;
  52. margin-right: 40rpx;
  53. }
  54. .case {
  55. position: absolute;
  56. left: 50%;
  57. transform: translateX(-50%);
  58. font-weight: 500;
  59. font-size: 38rpx;
  60. color: #333333;
  61. }
  62. }
  63. .content {
  64. flex: 1;
  65. display: flex;
  66. align-items: center;
  67. flex-direction: column;
  68. .icon {
  69. width: 104rpx;
  70. height: 104rpx;
  71. margin: 83rpx 0 21rpx;
  72. }
  73. .title {
  74. font-weight: 500;
  75. font-size: 50rpx;
  76. color: #333333;
  77. margin-bottom: 10rpx;
  78. }
  79. .desc {
  80. font-weight: 400;
  81. font-size: 29rpx;
  82. color: #666666;
  83. margin-bottom: 125rpx;
  84. }
  85. .btn {
  86. display: flex;
  87. justify-content: center;
  88. align-items: center;
  89. width: 642rpx;
  90. height: 79rpx;
  91. background: linear-gradient(90deg, #4daeee 0%, #449aff 100%);
  92. border-radius: 55rpx 55rpx 55rpx 55rpx;
  93. font-weight: 500;
  94. font-size: 29rpx;
  95. color: #ffffff;
  96. }
  97. }
  98. }
  99. </style>