issue.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <view>
  3. <u-navbar back-text="发布" back-icon-size="28" back-icon-color="#ffffff" :background="{backgroundColor: '#2795FD',}"
  4. :back-text-style="{color: '#ffffff'}"></u-navbar>
  5. <view class="main">
  6. <view class="title">
  7. 选择您要发布的信息
  8. </view>
  9. <view class="headline">
  10. 您好,欢迎来到荆开零工驿站
  11. </view>
  12. <view class="card" @click="toMyJobInformation">
  13. <view class="icon">
  14. <img src="@/assets/img/issue1@1x.png" alt="">
  15. </view>
  16. <view class="card-title">
  17. <view class="title1">
  18. 求职信息
  19. </view>
  20. <view class="title2">
  21. 坐等好工作来找你
  22. </view>
  23. </view>
  24. <view class="right">
  25. <u-icon name="arrow-right" color="#D6D6D6"></u-icon>
  26. </view>
  27. </view>
  28. <view class="card" @click="toLaborManagement">
  29. <view class="icon">
  30. <img src="@/assets/img/issue2@1x.png" alt="">
  31. </view>
  32. <view class="card-title">
  33. <view class="title1">
  34. 招工信息
  35. </view>
  36. <view class="title2">
  37. 精准满足用工需求
  38. </view>
  39. </view>
  40. <view class="right">
  41. <u-icon name="arrow-right" color="#D6D6D6"></u-icon>
  42. </view>
  43. </view>
  44. <view class="card" @click="toPostMessage">
  45. <view class="icon">
  46. <img src="@/assets/img/issue3@1x.png" alt="">
  47. </view>
  48. <view class="card-title">
  49. <view class="title1">
  50. 共享用工
  51. </view>
  52. <view class="title2">
  53. 发布共享公共信息
  54. </view>
  55. </view>
  56. <view class="right">
  57. <u-icon name="arrow-right" color="#D6D6D6"></u-icon>
  58. </view>
  59. </view>
  60. </view>
  61. <tabbar :current="2"></tabbar>
  62. </view>
  63. </template>
  64. <script>
  65. import tabbar from "@/components/Tabbar.vue"
  66. export default {
  67. components: {
  68. tabbar
  69. },
  70. data() {
  71. return {
  72. }
  73. },
  74. methods: {
  75. toMyJobInformation() {
  76. uni.navigateTo({
  77. url: '/pages/mine/myJobInformation/myJobInformation'
  78. })
  79. },
  80. toLaborManagement() {
  81. uni.navigateTo({
  82. url: '/pages/mine/employmentService/laborManagement/postMessage'
  83. })
  84. },
  85. toPostMessage() {
  86. uni.navigateTo({
  87. url: '/pages/mine/employmentService/postMessage'
  88. })
  89. },
  90. }
  91. }
  92. </script>
  93. <style>
  94. page {
  95. padding-bottom: 100px;
  96. }
  97. </style>
  98. <style scoped lang="scss">
  99. .main {
  100. padding: 96rpx 32rpx;
  101. .title {
  102. color: rgba(16, 16, 16, 1);
  103. font-size: 48rpx;
  104. font-family: 'PingFangSC-medium';
  105. line-height: 48rpx;
  106. }
  107. .headline {
  108. margin-top: 12rpx;
  109. line-height: 48rpx;
  110. color: rgba(119, 119, 119, 1);
  111. margin-bottom: 60rpx;
  112. }
  113. .card {
  114. display: flex;
  115. align-items: center;
  116. padding: 32rpx;
  117. border-radius: 12px;
  118. margin-bottom: 40rpx;
  119. background-color: rgba(245, 250, 255, 1);
  120. .icon {
  121. width: 136rpx;
  122. height: 136rpx;
  123. img {
  124. width: 100%;
  125. height: 100%;
  126. }
  127. }
  128. .card-title {
  129. margin-left: 40rpx;
  130. .title1 {
  131. color: rgba(16, 16, 16, 1);
  132. font-size: 36rpx;
  133. font-family: 'PingFangSC-medium';
  134. }
  135. .title2 {
  136. color: rgba(119, 119, 119, 1);
  137. margin-top: 8rpx;
  138. }
  139. }
  140. .right {
  141. margin-left: auto;
  142. }
  143. }
  144. }
  145. </style>