part_time.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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="part_time" v-for="(item, index) in jobs" :key="index" @click="detail()">
  13. <view class="title omit">兼职{{ item.job }}</view>
  14. <view class="price">{{ item.price }}元/天</view>
  15. <text class="date">4.16-4.17</text>
  16. <view class="address">
  17. <text @click.stop="company()">{{ item.name }}</text>
  18. <text class="add">申请</text>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. ip: this.http.ip,
  29. current: 0,
  30. tab: [{ name: '全部兼职' }, { name: '简单易做' }, { name: '体力达人' }, { name: '特色职位' }],
  31. jobs: [
  32. {
  33. name: '广西龙坚贸易有限公司',
  34. job: '装卸搬运工',
  35. price: '100',
  36. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714401904451.jpg'
  37. },
  38. {
  39. name: '韵达速递',
  40. job: '快递装卸工',
  41. price: '100',
  42. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714401871968.jpg'
  43. },
  44. {
  45. name: '北京滴滴有限公司',
  46. job: '滴滴快车专车司机',
  47. price: '100',
  48. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714401886712.jpg'
  49. },
  50. {
  51. name: '北京美团外卖有限公司',
  52. job: '美团骑手送餐员',
  53. price: '50',
  54. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714401895824.jpg'
  55. },
  56. {
  57. name: '字节跳动有限公司',
  58. job: '兼职女主播',
  59. price: '500',
  60. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714402008141.jpg'
  61. },
  62. {
  63. name: '广西龙坚贸易有限公司',
  64. job: '装卸搬运工',
  65. price: '400',
  66. url: 'https://chenglantimes.com/prod-api/profile/upload/2024/04/29/1714402008141.jpg'
  67. }
  68. ]
  69. };
  70. },
  71. onShow() {},
  72. onLoad() {},
  73. methods: {
  74. detail() {
  75. uni.navigateTo({
  76. url: '/pages/clsd/job/detail'
  77. })
  78. },
  79. go(url) {
  80. if (this.hasLogin()) {
  81. } else {
  82. uni.navigateTo({ url: '/pages/user/login' });
  83. }
  84. }
  85. }
  86. };
  87. </script>
  88. <style lang="scss">
  89. .jobs {
  90. margin-top: 0px;
  91. }
  92. </style>