| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <!--pages/pt/index.wxml-->
- <wxs src="../tools.wxs" module="globalTools" />
- <image src="{{imgServerUrl}}/images/pt/pt-banner.jpg" class="slide-image" mode='widthFix' />
- <block wx:if="{{list.length !=0 }}">
- <view class='box-body'>
- <view class='box-item' wx:for="{{list}}" wx:key="hpPositionId" bindtap='toDetail' data-id="{{item.id}}" data-cate="{{item.positionCategory}}" hover-class="item-hover">
- <view class='box-item-info'>
- <view class='one'>
- <view class='left'>
- {{item.positionName}}
- <image src='{{imgServerUrl}}/images/happyjob/pt.png'></image>
- </view>
- <view class='salary'>
- <!-- <image src='{{imgServerUrl}}/images/happyjob/dollor.png'></image> -->
- {{item.totalSalary?item.totalSalary:item.basicSalary}}
- </view>
- </view>
- <view class='four'>
- <view class='commpany'>{{item.hpCompany.companyName}}</view>
- <view class='area'>
- <image src='{{imgServerUrl}}/images/happyjob/address.png'></image>
- <text class='area-name'>{{item.hpPositionAddressList[0].adname}}</text>
- </view>
- </view>
- <view class='two'>
- <view class='limit_1'>
- <block wx:if="{{item.specialWelfare}}">
- <i-tag wx:for="{{globalTools.splitStr1(item.specialWelfare,',')}}" wx:key="*this" wx:for-item="tag" i-class="tag-class">
- {{tag}}
- </i-tag>
- </block>
- <block wx:if="{{item.accommodation}}">
- <i-tag i-class="tag-class">
- {{item.accommodation}}
- </i-tag>
- </block>
- <block wx:if="{{item.socialSecurity}}">
- <i-tag i-class="tag-class">
- {{item.socialSecurity}}
- </i-tag>
- </block>
- <block wx:if="{{item.workDinner}}">
- <i-tag i-class="tag-class">
- {{item.workDinner}}
- </i-tag>
- </block>
- <block wx:if="{{item.regularBus}}">
- <i-tag i-class="tag-class">
- {{item.regularBus}}
- </i-tag>
- </block>
- </view>
- <view></view>
- </view>
- <view class='three'>
- <view class='fan' wx:if="{{item.reward}}">
- <image src='{{imgServerUrl}}/images/happyjob/reward.png'></image>
- <text>入职最高奖励 {{item.reward}}元</text>
- </view>
- <view wx:else>
- </view>
- <view class='time'>
- <image src='{{imgServerUrl}}/images/happyjob/time.png'></image>
- <text>{{globalTools.subStr(item.updateDate)}}</text>
- </view>
- </view>
- <view class='five'>
- <view class="pt-member">已有
- <text class="number">{{item.startGroupNumber}}</text> 位伙伴加入了该拼工
- </view>
- <view class="endtime">结束时间:{{globalTools.formateDay(item.groupEndTime)}}</view>
- </view>
- </view>
- </view>
- </view>
- <view class="loading_no" hidden='{{isScroll}}'>{{showNoMore}}</view>
- </block>
- <block wx:else>
- <view class='no_data'>
- <image src="{{imgServerUrl}}/images/happyjob/no_data.png" class="white" />
- <view class='no_text'>暂时还没有拼工团 看看其他的吧</view>
- </view>
- </block>
|