You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
2.5 KiB
50 lines
2.5 KiB
<view class="header_list">
|
|
<text class="{{ status_idx == status_list[index].type ? 'active' : '' }} {{ index == 3 && message.auditFailCount > 0 ? 'dot' : '' }}" data-idx="{{index}}" bindtap="status_btn" wx:for='{{status_list}}' wx:key='id'>{{item.name}}</text>
|
|
</view>
|
|
<scroll-view class="bottom" scroll-top='{{topNum}}' refresher-enabled refresher-default-style="black" refresher-background="#fff" refresher-triggered="{{triggered}}" bindrefresherrefresh="onRefresh" bindscrolltolower='onScrolltolower' scroll-y>
|
|
<block wx:if='{{showlist.length != 0}}'>
|
|
<block wx:for="{{showlist}}" wx:key='id'>
|
|
<block>
|
|
<release_card id="recruitment" buycar_card_data='{{item}}' bindchange_status="change_status" bindrefresh="refresh" bindtotop="totop"/>
|
|
</block>
|
|
</block>
|
|
</block>
|
|
<block wx:if="{{ showlist.length == 0 }}">
|
|
<view class="box">
|
|
<image src="/images/me/null.png"></image>
|
|
<text>很抱歉,暂无更多内容了呢~</text>
|
|
<text class="jump" bindtap="jump_fn">去发布</text>
|
|
</view>
|
|
</block>
|
|
<view class="bottom_tip" wx:if="{{ showlist.length >= 5 && showlist.length==list_total }}">
|
|
<text> 没有更多内容啦 ~ </text>
|
|
</view>
|
|
</scroll-view>
|
|
|
|
<!-- 刷新提示模板 -->
|
|
<modal wx:if='{{ is_show_refresh_mask }}' bindconfirm_fn='refresh_confirm_fn' bindcancel_fn='hide_modal'>
|
|
<text>
|
|
<text class="red">刷新</text>一次需要<text class="red">10云币</text>,\n是否刷新</text>
|
|
</modal>
|
|
<!-- 积分不足时提示 -->
|
|
<modal bindconfirm_fn='earn_currency' bindcancel_fn='hide_modal' wx:if='{{ refresh_is_show_lack_currency }}'>
|
|
<view class="lack_currency">
|
|
<text>您当前的云币不足,<text style="color: #FF0000;">刷新</text>一次,需要消耗</text>
|
|
<text style="color: #FF0000;">10云币</text>
|
|
<text>,是否前往获取云币</text>
|
|
</view>
|
|
</modal>
|
|
|
|
<!-- 置顶提示模板 -->
|
|
<modal wx:if='{{ is_show_top_mask }}' bindconfirm_fn='top_confirm_fn' bindcancel_fn='hide_modal'>
|
|
<text>置顶<text class="red">1天</text>需要消耗<text class="red">100</text>云币,\n是否置顶</text>
|
|
</modal>
|
|
|
|
<!-- 置顶积分不足时提示 -->
|
|
<modal bindconfirm_fn='earn_currency' bindcancel_fn='hide_modal' wx:if='{{ is_show_lack_currency }}'>
|
|
<view class="lack_currency">
|
|
<text>您当前的云币不足,置顶需要消耗</text>
|
|
<text style="color: #FF0000;">100</text>
|
|
<text>云币,是否前往获取云币</text>
|
|
</view>
|
|
</modal>
|