shareEmployment.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <template>
  2. <view>
  3. <u-navbar back-text="共享用工" back-icon-size="28" back-icon-color="#ffffff" :background="{backgroundColor: '#2795FD',}" :back-text-style="{color: '#ffffff'}"></u-navbar>
  4. <view class="info-card" >
  5. <!-- 卡片信息 -->
  6. <view class="detail">
  7. 企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。
  8. </view>
  9. <view class="tag">
  10. <view class="item1">
  11. 急需用工
  12. </view>
  13. <view class="date-item">
  14. 2023-06-12
  15. </view>
  16. </view>
  17. <u-line color="#CFD2D5" />
  18. <!-- 审核 -->
  19. <view class="check">
  20. <view class="state">
  21. 审核中
  22. </view>
  23. <view class="handle">
  24. <view class="unamend">
  25. 修改
  26. </view>
  27. <view class="delete">
  28. 删除
  29. </view>
  30. </view>
  31. </view>
  32. </view>
  33. <view class="info-card">
  34. <!-- 卡片信息 -->
  35. <view class="detail">
  36. 因企业季节性停产3个月,现产生闲置熟练机床车工5名,如有需求请联系0716-8668168 汪先生。
  37. </view>
  38. <view class="tag">
  39. <view class="item2">
  40. 资源共享
  41. </view>
  42. <view class="date-item">
  43. 2023-06-12
  44. </view>
  45. </view>
  46. <u-line color="#CFD2D5" />
  47. <!-- 审核 -->
  48. <view class="check">
  49. <view class="state">
  50. 已审核
  51. </view>
  52. <view class="handle">
  53. <view class="amend">
  54. 修改
  55. </view>
  56. <view class="delete">
  57. 删除
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. <u-divider bg-color="#F0F0F2" margin-top="40" border-color="#CFD2D5">已经到底了</u-divider>
  63. <!-- 底部按钮 -->
  64. <button class="btn">发布信息</button>
  65. </view>
  66. </template>
  67. <script>
  68. export default {
  69. data() {
  70. return {
  71. }
  72. },
  73. methods: {
  74. }
  75. }
  76. </script>
  77. <style>
  78. page{
  79. background: #F0F0F2;
  80. padding-bottom: 100px;
  81. }
  82. </style>
  83. <style scoped lang="scss">
  84. .info-card{
  85. margin: 24rpx 32rpx 0;
  86. padding: 24rpx;
  87. background-color: #fff;
  88. border-radius: 24rpx;
  89. // 卡片信息
  90. .detail{
  91. color: rgba(16, 16, 16, 1);
  92. line-height: 40rpx;
  93. }
  94. .tag{
  95. display: flex;
  96. justify-content: space-between;
  97. margin-top: 16rpx;
  98. margin-bottom: 24rpx;
  99. .item1{
  100. color: rgba(39, 149, 253, 1);
  101. font-size: 24rpx;
  102. }
  103. .item2{
  104. color: rgba(0, 185, 98, 1);
  105. font-size: 24rpx;
  106. }
  107. }
  108. // 审核
  109. .check{
  110. display: flex;
  111. justify-content: space-between;
  112. align-items: center;
  113. margin-top: 32rpx;
  114. .state{
  115. color: rgba(51, 51, 51, 1);
  116. font-weight: 600;
  117. }
  118. .handle{
  119. display: flex;
  120. align-items: center;
  121. .unamend{
  122. width: 120rpx;
  123. height: 56rpx;
  124. line-height: 56rpx;
  125. text-align: center;
  126. font-family: Microsoft Yahei;
  127. border: 1px solid rgba(231, 232, 234, 1);
  128. border-radius: 50px;
  129. opacity: 0.4;
  130. }
  131. .amend{
  132. width: 120rpx;
  133. height: 56rpx;
  134. line-height: 56rpx;
  135. text-align: center;
  136. font-family: Microsoft Yahei;
  137. border: 1px solid rgba(231, 232, 234, 1);
  138. border-radius: 50px;
  139. }
  140. .delete{
  141. width: 120rpx;
  142. height: 56rpx;
  143. line-height: 56rpx;
  144. text-align: center;
  145. font-family: Microsoft Yahei;
  146. border: 1px solid rgba(231, 232, 234, 1);
  147. border-radius: 50px;
  148. margin-left: 24rpx;
  149. color: #E60012;
  150. }
  151. }
  152. }
  153. }
  154. // 底部按钮
  155. .btn{
  156. position: fixed;
  157. bottom: 32rpx;
  158. left: 0;
  159. right: 0;
  160. background-color:#F0F0F2;
  161. padding: 0 32rpx;
  162. border-radius: 50px;
  163. background-color: rgba(34, 149, 255, 1);
  164. color: rgba(241, 241, 241, 1);
  165. font-size: 36rpx;
  166. margin: 0 32rpx;
  167. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.03);
  168. }
  169. </style>