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.
36 lines
1.4 KiB
Plaintext
36 lines
1.4 KiB
Plaintext
<view class="p1020">
|
|
<view class="headTxt">排序</view>
|
|
<view class="container">
|
|
<view data-tag='0' bindtap='selectSort' class="item {{searchParam.sortTag == 0 ? 'active' : '' }}">时薪高</view>
|
|
<view data-tag='1' bindtap='selectSort' class="item {{searchParam.sortTag == 1 ? 'active' : '' }}">月薪高</view>
|
|
<view data-tag='2' bindtap='selectSort' class="item {{searchParam.sortTag == 2 ? 'active' : '' }}">距离近</view>
|
|
|
|
</view>
|
|
<view class="headTxt">特色</view>
|
|
<view class="container">
|
|
<block wx:for="{{jobSpecialLabelList}}" wx:for-item="item">
|
|
<view bindtap='selectJobSpecialLabel' data-index="{{index}}" class="item {{item.checked ? 'active' : ''}}">{{item.name}}</view>
|
|
</block>
|
|
</view>
|
|
<view class="headTxt">品牌</view>
|
|
<view class="container" style="margin-bottom:120px;">
|
|
<block wx:for="{{brandList}}" wx:for-item="item">
|
|
<view bindtap='selectBrand' data-index="{{index}}" class="item {{item.checked ? 'active' : ''}}">{{item.name}}</view>
|
|
</block>
|
|
|
|
</view>
|
|
</view>
|
|
<view class="btmFix">
|
|
<view class="display-flex">
|
|
<view class="flex-1 pl20 pr10">
|
|
<button class="resetBtn" style="font-weight:400;" catchtap="reset">
|
|
重置
|
|
</button>
|
|
</view>
|
|
<view class="flex-1 pl10 pr20">
|
|
<button type='primary' class="loginOut" style="font-weight:400;" catchtap="loginOut">
|
|
确定
|
|
</button>
|
|
</view>
|
|
</view>
|
|
</view> |