underReview.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <view class="company">
  3. <view class="company-content">
  4. <view class="company-title">
  5. <u-icon
  6. name="clock-fill"
  7. color="#016BF6"
  8. size="40"
  9. style="margin-right: 16rpx"
  10. ></u-icon>
  11. 认证审核中</view
  12. >
  13. <view class="review-desc"
  14. >您于[2025-07-31]提交了企业认证申请,请耐心等待认证结果</view
  15. >
  16. <view class="review-btn" @click="goCompleteMsg">我知道了</view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. address: "",
  25. addressDetail: "",
  26. };
  27. },
  28. methods: {
  29. goCompleteMsg() {
  30. uni.navigateTo({ url: "/package/jobIntention/completeMsg" });
  31. },
  32. },
  33. };
  34. </script>
  35. <style scoped lang="scss">
  36. .company {
  37. position: absolute;
  38. left: 0;
  39. right: 0;
  40. top: 0;
  41. bottom: 0;
  42. display: flex;
  43. flex-direction: column;
  44. font-family: DM Sans;
  45. .company-content {
  46. flex: 1;
  47. padding: 40rpx;
  48. box-sizing: border-box;
  49. overflow: hidden;
  50. overflow-y: auto;
  51. padding-top: 200rpx;
  52. .company-title {
  53. color: rgba(29, 33, 41, 1);
  54. font-family: DM Sans;
  55. font-size: 36rpx;
  56. font-weight: 500;
  57. line-height: 44rpx;
  58. text-align: center;
  59. }
  60. .review-desc {
  61. color: rgba(102, 102, 102, 1);
  62. font-family: DM Sans;
  63. font-size: 24rpx;
  64. font-weight: 400;
  65. line-height: 32rpx;
  66. text-align: center;
  67. padding-top: 22rpx;
  68. padding-bottom: 50rpx;
  69. }
  70. .review-btn {
  71. padding: 16rpx 32rpx;
  72. box-sizing: border-box;
  73. display: flex;
  74. justify-content: center;
  75. align-items: center;
  76. border-radius: 999px;
  77. background: rgba(255, 102, 0, 1);
  78. color: rgba(255, 255, 255, 1);
  79. font-family: DM Sans;
  80. font-size: 32rpx;
  81. font-weight: 400;
  82. margin: 0 22rpx;
  83. }
  84. }
  85. .bottom-btn {
  86. flex-shrink: 0;
  87. padding-bottom: 50rpx;
  88. text-align: center;
  89. color: #016bf6;
  90. font-family: DM Sans;
  91. font-size: 28rpx;
  92. font-weight: 400;
  93. line-height: 36rpx;
  94. }
  95. }
  96. </style>