index.wxml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <!--pages/pt/index.wxml-->
  2. <wxs src="../tools.wxs" module="globalTools" />
  3. <image src="{{imgServerUrl}}/images/pt/pt-banner.jpg" class="slide-image" mode='widthFix' />
  4. <block wx:if="{{list.length !=0 }}">
  5. <view class='box-body'>
  6. <view class='box-item' wx:for="{{list}}" wx:key="hpPositionId" bindtap='toDetail' data-id="{{item.id}}" data-cate="{{item.positionCategory}}" hover-class="item-hover">
  7. <view class='box-item-info'>
  8. <view class='one'>
  9. <view class='left'>
  10. {{item.positionName}}
  11. <image src='{{imgServerUrl}}/images/happyjob/pt.png'></image>
  12. </view>
  13. <view class='salary'>
  14. <!-- <image src='{{imgServerUrl}}/images/happyjob/dollor.png'></image> -->
  15. {{item.totalSalary?item.totalSalary:item.basicSalary}}
  16. </view>
  17. </view>
  18. <view class='four'>
  19. <view class='commpany'>{{item.hpCompany.companyName}}</view>
  20. <view class='area'>
  21. <image src='{{imgServerUrl}}/images/happyjob/address.png'></image>
  22. <text class='area-name'>{{item.hpPositionAddressList[0].adname}}</text>
  23. </view>
  24. </view>
  25. <view class='two'>
  26. <view class='limit_1'>
  27. <block wx:if="{{item.specialWelfare}}">
  28. <i-tag wx:for="{{globalTools.splitStr1(item.specialWelfare,',')}}" wx:key="*this" wx:for-item="tag" i-class="tag-class">
  29. {{tag}}
  30. </i-tag>
  31. </block>
  32. <block wx:if="{{item.accommodation}}">
  33. <i-tag i-class="tag-class">
  34. {{item.accommodation}}
  35. </i-tag>
  36. </block>
  37. <block wx:if="{{item.socialSecurity}}">
  38. <i-tag i-class="tag-class">
  39. {{item.socialSecurity}}
  40. </i-tag>
  41. </block>
  42. <block wx:if="{{item.workDinner}}">
  43. <i-tag i-class="tag-class">
  44. {{item.workDinner}}
  45. </i-tag>
  46. </block>
  47. <block wx:if="{{item.regularBus}}">
  48. <i-tag i-class="tag-class">
  49. {{item.regularBus}}
  50. </i-tag>
  51. </block>
  52. </view>
  53. <view></view>
  54. </view>
  55. <view class='three'>
  56. <view class='fan' wx:if="{{item.reward}}">
  57. <image src='{{imgServerUrl}}/images/happyjob/reward.png'></image>
  58. <text>入职最高奖励 {{item.reward}}元</text>
  59. </view>
  60. <view wx:else>
  61. </view>
  62. <view class='time'>
  63. <image src='{{imgServerUrl}}/images/happyjob/time.png'></image>
  64. <text>{{globalTools.subStr(item.updateDate)}}</text>
  65. </view>
  66. </view>
  67. <view class='five'>
  68. <view class="pt-member">已有
  69. <text class="number">{{item.startGroupNumber}}</text> 位伙伴加入了该拼工
  70. </view>
  71. <view class="endtime">结束时间:{{globalTools.formateDay(item.groupEndTime)}}</view>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="loading_no" hidden='{{isScroll}}'>{{showNoMore}}</view>
  77. </block>
  78. <block wx:else>
  79. <view class='no_data'>
  80. <image src="{{imgServerUrl}}/images/happyjob/no_data.png" class="white" />
  81. <view class='no_text'>暂时还没有拼工团 看看其他的吧</view>
  82. </view>
  83. </block>