detail.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <view>
  3. <view class="main">
  4. <view class="title">快递装卸工</view>
  5. <view class="price">5000/月</view>
  6. <view class="desc">两班倒 · 需10人 · 学历不限 · 经验不限</view>
  7. </view>
  8. <view class="bos">
  9. <view class="ms" style="margin-top: 0px;">
  10. <view class="mtitle">职位描述</view>
  11. <view class="item">1、装车、卸货、扫码计重</view>
  12. <view class="item">2、3~4人装卸一辆17.5米的大货车,每车货物重33吨左右,每个小组装卸量约3辆车/天;</view>
  13. <view class="item">3、年龄要求18~45岁以内,低于18岁超过45岁均不安排:</view>
  14. <view class="item">4、底薪(保底货量)+奖金(超保底货量),装蓰儱瘕卸多少吨货,给多少工资,做多得多,上不封顶5、免费住宿,伙食补贴12.5/天:</view>
  15. <view class="item">5、上班时间两个班次19:00~凌晨5:00,中途有休息,或凌晨12:00~早上9点,均为固定长期夜班。</view>
  16. <view class="item">6、暑假工/临时工勿扰</view>
  17. </view>
  18. <view class="ms" @click="detail()">
  19. <image src="../../static/favicon.png" mode="widthFix"></image>
  20. <view class="con">
  21. <view class="mti">广西龙坚贸易有限公司</view>
  22. <view class="address">南宁青秀山航洋城1433</view>
  23. </view>
  24. <text class="icon">&#xe62b;</text>
  25. </view>
  26. <map style="width: 100%; height: 150px" :latitude="latitude" :longitude="longitude" :markers="covers"></map>
  27. </view>
  28. <view class="footer">
  29. <view class="td">
  30. <button class="btn">投递简历</button>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. latitude: 39.909,
  40. longitude: 116.39742,
  41. covers: [
  42. {
  43. latitude: 39.909,
  44. longitude: 116.39742,
  45. iconPath: '../../../static/location.png'
  46. },
  47. {
  48. latitude: 39.9,
  49. longitude: 116.39,
  50. iconPath: '../../../static/location.png'
  51. }
  52. ]
  53. };
  54. },
  55. methods: {
  56. detail() {
  57. uni.navigateTo({
  58. url: '/pages/clsd/job/company'
  59. });
  60. }
  61. }
  62. };
  63. </script>
  64. <style lang="scss">
  65. .title {
  66. font-weight: bold;
  67. }
  68. .price {
  69. padding-top: 5px;
  70. font-size: 15px;
  71. font-weight: bold;
  72. color: #ff5722;
  73. }
  74. .desc {
  75. padding-top: 5px;
  76. font-size: 14px;
  77. }
  78. .bos {
  79. background-color: white;
  80. padding: 20px;
  81. border-radius: 25px 25px 0px 0px;
  82. }
  83. .ms {
  84. margin-top: 20px;
  85. overflow: hidden;
  86. .mtitle {
  87. font-weight: bold;
  88. margin-bottom: 10px;
  89. }
  90. .item {
  91. font-size: 14px;
  92. padding-top: 7px;
  93. }
  94. image {
  95. float: left;
  96. width: 55px;
  97. height: 55px;
  98. border-radius: 50%;
  99. }
  100. .con {
  101. float: left;
  102. padding-left: 10px;
  103. .mti {
  104. font-weight: bold;
  105. padding-bottom: 5px;
  106. }
  107. .address {
  108. font-size: 14px;
  109. }
  110. }
  111. .icon {
  112. float: right;
  113. margin-top: 14px;
  114. }
  115. }
  116. map {
  117. border-radius: 8px;
  118. overflow: hidden;
  119. margin-top: 15px;
  120. }
  121. .footer {
  122. position: fixed;
  123. width: 100%;
  124. bottom: 20px;
  125. .td {
  126. width: 100%;
  127. .btn {
  128. width: 60%;
  129. }
  130. }
  131. }
  132. </style>