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.
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
<view style='margin-bottom: 80px;'>
|
|
<view class='tc' wx:if='{{loading}}'>
|
|
<text class='f12 c045'> 加载中 </text>
|
|
<loading size='36px' className='inlineBlock'>
|
|
</loading>
|
|
</view>
|
|
<view class='tc' wx:if='{{noData}}'>
|
|
<text class='f12 c045'> 暂无更多数据 </text>
|
|
</view>
|
|
<view hover-class='ahover' hover-start-time='400' wx:for='{{jobList}}' data-id='{{item.id}}' bindtap='goDetail' wx:key='{{index}}'>
|
|
<view class='p1020'>
|
|
<view class='v-center'>
|
|
<view class='f18 c085 flex-1'>
|
|
{{item.jobName}}
|
|
</view>
|
|
<view class='f14 c633'>
|
|
{{item.combiSalary}}
|
|
</view>
|
|
</view>
|
|
<view class='mt8 mb8'>
|
|
<view class='tagsLi'>
|
|
{{item.workType}}
|
|
</view>
|
|
<view class='tagsLi' wx:for="{{item.jobSpecialLabelNames.split(', ')}}" wx:for-index='idx' wx:for-item='itemName' wx:key='{{index}}'>
|
|
{{itemName}}
|
|
</view>
|
|
</view>
|
|
<view class='v-center'>
|
|
<view class='f14 c085 flex-1'>
|
|
{{item.aliasName}}
|
|
</view>
|
|
<view class='f14 c025'>
|
|
{{item.district}}<text class='f14 c025 ml8'> {{ item.distanceKm }} </text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class='sbLine'>
|
|
</view>
|
|
</view>
|
|
</view> |