full_time.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <template>
  2. <view class="main">
  3. <!--搜索-->
  4. <view class="search">
  5. <u-search placeholder="请输入职位名称" bgColor="white" :showAction="false"></u-search>
  6. </view>
  7. <!--找工作-->
  8. <view class="tab">
  9. <u-tabs :list="tab" :current="current"></u-tabs>
  10. </view>
  11. <view class="jobs">
  12. <view class="full_time" v-for="(item, index) in jobs" :key="index" @click="detail(item)">
  13. <view class="out">
  14. <view class="int">
  15. <image :src="item.url" mode="aspectFill"></image>
  16. <view class="title omit">{{ item.name }}</view>
  17. <view class="desc">{{ item.job }}</view>
  18. <view class="price">{{ item.price }}元/日</view>
  19. <view class="address">
  20. <text class="icon">&#xe62e;</text>
  21. <text>南宁青秀山</text>
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {
  33. ip: this.http.ip,
  34. current: 0,
  35. tab: [{ name: '推荐职位' }, { name: '服务员' }, { name: '建筑泥工' }, { name: '网管' }],
  36. jobs: [{
  37. name: '广西龙坚贸易有限公司',
  38. job: '装卸搬运工',
  39. price: '4000',
  40. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714401904451.jpg'
  41. },
  42. {
  43. name: '韵达速递',
  44. job: '快递装卸工',
  45. price: '4700',
  46. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714401871968.jpg'
  47. },
  48. {
  49. name: '北京滴滴有限公司',
  50. job: '滴滴快车专车司机',
  51. price: '4200',
  52. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714401886712.jpg'
  53. },
  54. {
  55. name: '北京美团外卖有限公司',
  56. job: '美团骑手送餐员',
  57. price: '3700',
  58. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714401895824.jpg'
  59. },
  60. {
  61. name: '字节跳动有限公司',
  62. job: '女主播',
  63. price: '5500',
  64. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714402008141.jpg'
  65. },
  66. {
  67. name: '广西龙坚贸易有限公司',
  68. job: '装卸搬运工',
  69. price: '4000',
  70. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714402008141.jpg'
  71. }
  72. ]
  73. };
  74. },
  75. onShow() {},
  76. onLoad() {},
  77. methods: {
  78. detail() {
  79. uni.navigateTo({
  80. url: '/pages/clsd/job/detail'
  81. })
  82. },
  83. go(url) {
  84. if (this.hasLogin()) {} else {
  85. uni.navigateTo({ url: '/pages/user/login' });
  86. }
  87. }
  88. }
  89. };
  90. </script>
  91. <style lang="scss">
  92. .jobs {
  93. margin-top: 0px;
  94. }
  95. </style>