guidePage.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <view class="guide-page">
  3. <view class="guide-item">
  4. <view class="guide-img">
  5. <image
  6. src="@/static/images/jobApplicant/woyaozhaogongzuo.svg"
  7. mode="aspectFix"
  8. />
  9. </view>
  10. <view class="guide-btn" @click="goWork">我要找工作</view>
  11. </view>
  12. <view class="guide-item">
  13. <view class="guide-img">
  14. <image
  15. src="@/static/images/jobApplicant/woyaozhaoren.svg"
  16. mode="aspectFix"
  17. />
  18. </view>
  19. <view class="guide-btn" @click="gotocompany">我要招人</view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. export default {
  25. data() {
  26. return {};
  27. },
  28. methods: {
  29. goWork(){
  30. uni.navigateTo({ url: '/pages/my/jobApplicant/welcomePage' })
  31. },
  32. gotocompany(){
  33. uni.navigateTo({ url: '/pages/my/businessLicense' })
  34. },
  35. },
  36. };
  37. </script>
  38. <style scoped lang="scss">
  39. .guide-page {
  40. background: linear-gradient(90deg, rgba(13, 39, 247, 1), rgba(19, 193, 234, 1) 100%);
  41. position: absolute;
  42. left: 0;
  43. right: 0;
  44. top: 0;
  45. bottom: 0;
  46. padding: 120rpx 76rpx;
  47. display: flex;
  48. flex-direction: column;
  49. box-sizing: border-box;
  50. gap: 36rpx;
  51. .guide-item {
  52. width: 100%;
  53. height: 100%;
  54. border-radius: 28rpx;
  55. background: rgba(255, 255, 255, 0.851);
  56. display: flex;
  57. flex-direction: column;
  58. justify-content: center;
  59. align-items: center;
  60. padding: 0 56rpx;
  61. box-sizing: border-box;
  62. gap: 72rpx;
  63. .guide-img {
  64. width: 364rpx;
  65. height: 364rpx;
  66. overflow: hidden;
  67. image {
  68. width: 100%;
  69. height: 100%;
  70. }
  71. }
  72. .guide-btn {
  73. border-radius: 100rpx;
  74. background: rgba(255, 255, 255, 1);
  75. color: #016bf6;
  76. font-family: DM Sans;
  77. font-size: 32rpx;
  78. font-weight: 400;
  79. line-height: 48rpx;
  80. letter-spacing: 0%;
  81. text-align: center;
  82. width: 100%;
  83. padding: 16rpx;
  84. box-sizing: border-box;
  85. }
  86. }
  87. }
  88. </style>