issue.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. <template>
  2. <view>
  3. <u-navbar back-text="发布" back-icon-size="0" :customBack="customBack" 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 * as API from '@/apis/pagejs/tab.js'
  66. import tabbar from "@/components/Tabbar.vue"
  67. export default {
  68. components: {
  69. tabbar
  70. },
  71. data() {
  72. return {
  73. }
  74. },
  75. methods: {
  76. customBack(){
  77. },
  78. toMyJobInformation() {
  79. uni.navigateTo({
  80. url: '/pages/mine/myJobInformation/myJobInformation'
  81. })
  82. },
  83. toLaborManagement() {
  84. uni.navigateTo({
  85. url: '/pages/mine/employmentService/laborManagement/postMessage'
  86. })
  87. },
  88. toPostMessage() {
  89. uni.navigateTo({
  90. url: '/pages/mine/employmentService/postMessage'
  91. })
  92. },
  93. }
  94. }
  95. </script>
  96. <style>
  97. page {
  98. padding-bottom: 100px;
  99. }
  100. </style>
  101. <style scoped lang="scss">
  102. .main {
  103. padding: 96rpx 32rpx;
  104. .title {
  105. color: rgba(16, 16, 16, 1);
  106. font-size: 48rpx;
  107. font-family: 'PingFangSC-medium';
  108. line-height: 48rpx;
  109. }
  110. .headline {
  111. margin-top: 12rpx;
  112. line-height: 48rpx;
  113. color: rgba(119, 119, 119, 1);
  114. margin-bottom: 60rpx;
  115. }
  116. .card {
  117. display: flex;
  118. align-items: center;
  119. padding: 32rpx;
  120. border-radius: 12px;
  121. margin-bottom: 40rpx;
  122. background-color: rgba(245, 250, 255, 1);
  123. .icon {
  124. width: 136rpx;
  125. height: 136rpx;
  126. img {
  127. width: 100%;
  128. height: 100%;
  129. }
  130. }
  131. .card-title {
  132. margin-left: 40rpx;
  133. .title1 {
  134. color: rgba(16, 16, 16, 1);
  135. font-size: 36rpx;
  136. font-family: 'PingFangSC-medium';
  137. }
  138. .title2 {
  139. color: rgba(119, 119, 119, 1);
  140. margin-top: 8rpx;
  141. }
  142. }
  143. .right {
  144. margin-left: auto;
  145. }
  146. }
  147. }
  148. </style>