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.

34 lines
1.6 KiB
Plaintext

<block wx:if="{{recordList.length > 0}}">
<!-- <view class="weui-search-bar weui-search-bar_focusing bgf" id="searchBar" style="line-height: 1;padding-left:16px;padding-right:16px">
<view class="weui-search-bar__form flex-1 fsa g_bg_f_5">
<view class="weui-search-bar__box flex-1 fsa" style="border-radius: 17px;">
<i class="iconfont icon-sousuo"></i>
<input type="text" class="weui-search-bar__input flex-1 c3" style="max-width:150px" placeholder-style="color:#999;" value="{{inputVal}}" placeholder="搜索职位名称" bindinput="inputTyping" bindconfirm="searchKey" auto-focus confirm-type="search" />
<view class="iconfont icon-qingchu biggerSize" wx:if="{{inputVal}}" catchtap="clearInput"></view>
<view class="search" bindtap="searchKey">搜索</view>
</view>
</view>
</view> -->
<view class="bt1">
<view class="bgf display-flex p16 pb0" data-id="{{item.id}}" bindtap="goDetail" hover-class="g_bg_f_5" wx:for="{{recordList}}" wx:key="index" wx:item="item">
<view class="display-flex flex-1 pb16 bb1">
<view class="flex-1">
<view class="f16 fwb">{{item.jobName}}</view>
<view class="f14 c6 mt8">{{(item.citys && item.citys != '-') ? item.citys + ' | ' : ''}} {{item.age}}</view>
</view>
<view class="tr">
<view class="f14 c9">{{item.createTime}}</view>
</view>
</view>
</view>
</view>
</block>
<block wx:else>
<view class="tc">
<view class="t-icon t-icon-zanwu" style="width: 80px; height: 80px; margin: 50% auto 10px"></view>
<view class="cccc">暂无记录</view>
</view>
</block>