companyReview.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <!-- 企业认证二期 -->
  3. <view class="company-review">
  4. <view class="review-img">
  5. <image src="@/static/images/jobApplicant/shaixuanyuangong.svg" mode="scaleToFill" />
  6. </view>
  7. <view class="review-content">
  8. <view class="review-title">企业环境认证</view>
  9. <view class="review-desc"
  10. >尊敬的XXX先生/女士,为确保您与牛人之间良好的招聘体验,
  11. 需要对您的企业环境进行认证,认证前请做好一下准备:</view
  12. >
  13. <view class="desc-box">
  14. <view class="review-desc">请确保是您本人在进行认证操作</view>
  15. <view class="review-desc">您当前是处于企业办公环境内</view>
  16. <view class="review-desc">工作时间:08:00-22:00,请确保在认证工作时间内完成</view>
  17. </view>
  18. <view class="review-desc">准备好以后,请点击【开始认证】</view>
  19. <view class="review-txt-btn">更多操作</view>
  20. <view class="review-btn" @click="goCompanyMsg">开始认证</view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {};
  28. },
  29. methods: {
  30. goCompanyMsg() {
  31. uni.navigateTo({ url: "/package/jobIntention/companyMsg" });
  32. },
  33. },
  34. };
  35. </script>
  36. <style scoped lang="scss">
  37. .company-review {
  38. position: absolute;
  39. left: 0;
  40. right: 0;
  41. bottom: 0;
  42. top: 0;
  43. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  44. display: flex;
  45. flex-direction: column;
  46. .review-img {
  47. flex: 1;
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. image {
  52. width: 418rpx;
  53. height: 418rpx;
  54. }
  55. }
  56. .review-content {
  57. flex-shrink: 0;
  58. width: 100%;
  59. height: 1120rpx;
  60. border-radius: 20rpx 20rpx 0px 0px;
  61. background: rgba(255, 255, 255, 1);
  62. padding: 50rpx;
  63. box-sizing: border-box;
  64. position: relative;
  65. .review-title {
  66. color: rgba(29, 33, 41, 1);
  67. font-family: DM Sans;
  68. font-size: 36rpx;
  69. font-weight: 500;
  70. line-height: 44rpx;
  71. padding-bottom: 22rpx;
  72. }
  73. .review-desc {
  74. color: rgba(102, 102, 102, 1);
  75. font-family: DM Sans;
  76. font-size: 24rpx;
  77. font-weight: 400;
  78. line-height: 32rpx;
  79. }
  80. .desc-box {
  81. padding: 50rpx 0 38rpx 0;
  82. box-sizing: border-box;
  83. }
  84. .review-txt-btn {
  85. color: #016bf6;
  86. font-family: DM Sans;
  87. font-size: 24rpx;
  88. font-weight: 400;
  89. line-height: 32rpx;
  90. margin-top: 24rpx;
  91. }
  92. .review-btn {
  93. border-radius: 999px;
  94. background: rgba(255, 102, 0, 1);
  95. display: flex;
  96. justify-content: center;
  97. color: rgba(255, 255, 255, 1);
  98. font-family: DM Sans;
  99. font-size: 32rpx;
  100. font-weight: 400;
  101. padding: 16rpx 32rpx;
  102. box-sizing: border-box;
  103. position: absolute;
  104. left: 50rpx;
  105. right: 50rpx;
  106. bottom: 60rpx;
  107. }
  108. }
  109. }
  110. </style>