You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
5.2 KiB
Plaintext
84 lines
5.2 KiB
Plaintext
|
2 years ago
|
<!-- <button class="weui-btn weui-btn_mini weui-btn_primary fr">立即报名</button> -->
|
||
|
|
|
||
|
|
<view wx:if="{{isShow}}" style="padding:0 10px 10px">
|
||
|
|
<view class="tc" wx:if="{{jobList == null || jobList.length == 0 && !isShow}}">
|
||
|
|
<i class="t-icon t-icon-zanwujilu" style=" width: 92px;height: 92px;margin-top: 90px;"></i>
|
||
|
|
<view class="mt20 cccc">暂无记录</view>
|
||
|
|
</view>
|
||
|
|
<scroll-view style=' height:calc(100vh - 20px);' scroll-y enable-back-to-top='true' bindscrolltolower='onScrollToLower' class="jobCenter mt10" wx:else>
|
||
|
|
<view class="jobOne" hover-start-time='50' hover-stay-time='0' wx:for='{{jobList}}' data-id='{{item.id}}' bindtap='goDetail' wx:key='{{index}}'>
|
||
|
|
<view class='p1020 jobIn' hover-class='ahover'>
|
||
|
|
<view class="display-flex">
|
||
|
|
<view class="prImg">
|
||
|
|
<image src="{{item.logo}}" wx:if="{{item.logo != null && item.logo != ''}}" mode="aspectFit" class="logoClass" alt="">
|
||
|
|
</image>
|
||
|
|
<image class='logoClass' wx:else mode='aspectFit' src='https://matripe.oss-cn-beijing.aliyuncs.com/default.png'></image>
|
||
|
|
<button wx:if="{{isLogin}}" class="collect v-center {{item.collected - 1 == 0 ? 'collectred':''}}" catchtap="collectPaste" data-collected="{{item.collected}}" data-jobid="{{item.id}}" hover-stop-propagation>
|
||
|
|
<icon class="iconfont {{item.collected - 1 == 0 ? 'icon-shoucang-red':'icon-wode-shoucang'}}" style="font-size:10px;position: relative;top: -5px;"></icon>
|
||
|
|
<text class="f10 {{item.collected - 1 == 0 ? 'cred':'c8'}}" style="line-height:18px;margin-left:2px;">{{item.collected - 2 == 0 ? '收藏' : '已收藏'}}</text>
|
||
|
|
</button>
|
||
|
|
<button wx:else class="collect" open-type="getPhoneNumber" catchgetphonenumber="getPhoneNumber" catchtap="emptyMethod" data-collected="{{item.collected}}" data-jobid="{{item.id}}" hover-stop-propagation>
|
||
|
|
<icon class="iconfont icon-wode-shoucang" style="font-size:10px;position: relative;top: -5px;"></icon>
|
||
|
|
<text class="f10 c8" style="line-height:18px;margin-left:2px;">收藏</text>
|
||
|
|
</button>
|
||
|
|
</view>
|
||
|
|
<view class="flex-1 vsb">
|
||
|
|
<view class='display-flex'>
|
||
|
|
<view class='storeName' wx:if="{{item.jobName != null && item.jobName != ''}}">
|
||
|
|
{{item.jobName}}
|
||
|
|
</view>
|
||
|
|
<view class='storeName' wx:else>
|
||
|
|
{{item.aliasName}}
|
||
|
|
</view>
|
||
|
|
<view class='hourPay'>
|
||
|
|
{{item.hourlyPay}}
|
||
|
|
<!-- {{item.combiSalary}} -->
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class='v-center mt16 mb16'>
|
||
|
|
<view class='f14s c045 flex-1'>
|
||
|
|
{{item.district}}
|
||
|
|
<block wx:if="{{item.district != '' && item.district != null && item.district != undefined}}"> | </block>
|
||
|
|
<block wx:if="{{item.distance != null && item.distance != ''}}">{{item.distanceKm}}</block>
|
||
|
|
<block wx:else>{{item.age}}</block>
|
||
|
|
<view class="fr f14s c633 fw400">{{item.monthlyPay}}</view>
|
||
|
|
<!-- {{item.aliasName}} <text class='f14 c025 ml8'> {{ item.distanceKm }} </text> -->
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<view class=''>
|
||
|
|
<view class="tttg">
|
||
|
|
<!-- <view wx:if="{{item.rebate != null}}" class='tagsLi spli'>
|
||
|
|
返费{{item.rebate}}
|
||
|
|
</view> -->
|
||
|
|
<view class='tagsLi' wx:for="{{item.jobSpecialLabelNames}}" wx:for-item="item1" wx:key='{{index}}'>
|
||
|
|
{{item1}}
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<button wx:if="{{isLogin}}" class="weui-btn weui-btn_mini weui-btn_primary fr" catchtap="goEnroll" data-idx='{{index}}'>立即报名</button>
|
||
|
|
<button wx:else class="weui-btn weui-btn_mini weui-btn_primary fr" open-type="getPhoneNumber" catchgetphonenumber="getPhoneNumber" catchtap="emptyMethod" data-idx='{{index}}'>立即报名</button>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
<!-- <view class='sbLine'>
|
||
|
|
</view> -->
|
||
|
|
</view>
|
||
|
|
<block wx:if="{{(jobList == null || jobList.length == 0) && (storeJobListSearchForm.keys != null && storeJobListSearchForm.keys != '')}}">
|
||
|
|
<view class='tc p20 f12 c045'>
|
||
|
|
没有符合条件的职位
|
||
|
|
</view>
|
||
|
|
</block>
|
||
|
|
<block wx:else>
|
||
|
|
<!-- <loading wx:if='{{loading}}' size='36px' className='inlineBlock'>
|
||
|
|
加载中
|
||
|
|
</loading> -->
|
||
|
|
<view class='tc' wx:if='{{hasMoreData}}'>
|
||
|
|
<text class='tc p20 f12 c045 dib'> 加载中...</text>
|
||
|
|
</view>
|
||
|
|
<view class='tc p20 f12 c045' wx:if='{{!hasMoreData}}'>
|
||
|
|
暂无更多数据
|
||
|
|
</view>
|
||
|
|
</block>
|
||
|
|
</scroll-view>
|
||
|
|
|
||
|
|
</view>
|