authResult1.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <template>
  2. <view class="page">
  3. <view class="headers ">
  4. <view class="header">
  5. <view class="dis a-c j-start ">
  6. <u-icon name="arrow-left" size="40" @tap="back"></u-icon>
  7. <text style="margin: auto;">认证结果</text>
  8. </view>
  9. </view>
  10. </view>
  11. <view class="authresult dis f-c a-c ">
  12. <image src="../../static/image/user/wawit.png" mode=""></image>
  13. <text class="mt-1">等待审核</text>
  14. <text class="mt-2">已提交资料,请耐心等待后台人员审核</text>
  15. </view>
  16. <view class="footer">
  17. <u-button type="primary" style="background:linear-gradient( 90deg, #499DFF 0%, #0052FF 100%);"
  18. @tap="returnHome">返回主页</u-button>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. }
  27. },
  28. onShow() {
  29. },
  30. onLoad() {
  31. },
  32. methods: {
  33. //页面返回按钮
  34. back() {
  35. uni.navigateBack({
  36. delta: 1, // 返回的页面数,如果是1表示返回上一页
  37. success: function() {}
  38. });
  39. },
  40. returnHome() {
  41. uni.switchTab({
  42. url: "/pages/index/index"
  43. })
  44. }
  45. }
  46. }
  47. </script>
  48. <style lang="scss" scoped>
  49. page {
  50. background: #fff;
  51. }
  52. .headers {
  53. position: fixed;
  54. top: 0;
  55. left: 0;
  56. z-index: 999999;
  57. width: 100%;
  58. border-bottom: 1px solid #EEEEEE;
  59. .header {
  60. width: 100%;
  61. height: auto;
  62. padding: 50px 16px 14px;
  63. background: linear-gradient(180deg, #D1E3FE 0%, #FFFFFF 100%);
  64. text {
  65. font-size: 18px;
  66. font-weight: bold;
  67. color: #000;
  68. }
  69. }
  70. }
  71. .denyReason {
  72. width: 100%;
  73. background: #F9F9F9;
  74. border-radius: 5px;
  75. padding: 15px;
  76. color: #666;
  77. font-size: 14px;
  78. }
  79. .authresult {
  80. position: fixed;
  81. top: 200px;
  82. left: 0;
  83. right: 0;
  84. width: 100%;
  85. text-align: center;
  86. padding: 25px;
  87. image {
  88. width: 50px;
  89. height: 50px;
  90. }
  91. text:nth-child(2) {
  92. font-size: 15px;
  93. color: #333;
  94. font-weight: bold;
  95. }
  96. text:nth-child(3) {
  97. font-size: 14px;
  98. color: #666;
  99. }
  100. }
  101. .footer {
  102. background: #FFFFFF;
  103. box-shadow: 0px -2px 5px 0px rgba(1, 83, 255, 0.05);
  104. position: fixed;
  105. bottom: 0;
  106. left: 0;
  107. right: 0;
  108. padding: 12px 16px;
  109. }
  110. </style>