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.
67 lines
4.1 KiB
Plaintext
67 lines
4.1 KiB
Plaintext
<view class hover-class="none" hover-stop-propagation="false">
|
|
<view class style="padding:10px;background-color: #fff;" hover-class="none" hover-stop-propagation="false">
|
|
<view class="weui-search-bar__box fsb lowZindex" style="background-color: #f5f5f5;border-radius: 17px;padding-left:12px">
|
|
<i class="iconfont icon-sousuo11"></i>
|
|
<input type="text" class="weui-search-bar__input flex-1 c3" style="padding-left:8px" placeholder-style="color:#999;" value="{{inputVal}}" placeholder="{{'搜索培训课程'}}" bindinput="inputTyping" bindconfirm="searchKey" confirm-type="search" />
|
|
<view class="iconfont icon-qingchu biggerSize" wx:if="{{inputVal}}" catchtap="clearInput"></view>
|
|
<view class="search" style="width:56px" bindtap="searchKey">搜索</view>
|
|
</view>
|
|
</view>
|
|
<view class hover-class="none" hover-stop-propagation="false">
|
|
<scroll-view scroll-y="{{true}}" enable-back-to-top="true" bindscrolltolower="onScrollToLower" bindrefresherrefresh="onScrollRefresh" refresher-enabled="{{!isScrollTop}}" class="jobCenterActive" scroll-with-animation="true" style="height:calc(100vh - 60px);">
|
|
<view x:if="{{recordList != null && recordList.length > 0}}" class style="padding-top: 0;background:#f5f5f5">
|
|
<view class="jcenter br8">
|
|
<view class="listcontainer" style="border-top: 1px solid #f3f3f3;">
|
|
<view class="jobOne fsa" hover-start-time="50" hover-stay-time="0" wx:for="{{recordList}}" data-id="{{item.id}}" bindtap="goDetail" wx:key="index" hover-class="ahover" style="background-color:#fff;margin:8px;border-radius:8px">
|
|
<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>
|
|
</view>
|
|
<view class="flex_1 fcsb ml12" style="height:100%">
|
|
<view class="fsb">
|
|
<view class="f16 fw600">{{item.vocationalName}}</view>
|
|
<view class="fsa bz f12 fee" wx:if="{{!isLogin}}" catchtap="goLogin">
|
|
<view class="inner" hover-class="none" hover-stop-propagation="false">费</view>
|
|
登录查看
|
|
</view>
|
|
<view class="fsa bz f12 fee" wx:else>
|
|
<view class="inner" hover-class="none" hover-stop-propagation="false">费</view>
|
|
{{isAgency ? (item.serviceCharge ? item.serviceCharge : '-') : '仅代理可见'}}
|
|
</view>
|
|
<!-- <view class="fsa bz f12 fee" wx:if="{{isAgency}}">
|
|
<view class="inner">费</view>
|
|
{{item.serviceCharge}}
|
|
</view> -->
|
|
</view>
|
|
|
|
<view class="fsb f14 c9 mt4">
|
|
<view class>{{'河南省 | 郑州市'}} | {{item.semester}}</view>
|
|
</view>
|
|
<view class="fsb f12 mt8 mb4">
|
|
<view class="salaryBtn">{{'工作薪资:' + item.salary}}</view>
|
|
</view>
|
|
|
|
<view class="fsb">
|
|
<view class="cf40 fw600 lh1">
|
|
<span class="f14">学费</span>
|
|
<span class="f20">{{item.tuition}}</span>
|
|
</view>
|
|
<view class="recordBtn" data-info="{{item}}" catchtap="recordNow">立即报名</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<block wx:if="{{(recordList == null || recordList.length == 0) && (storeJobListSearchForm.keys != null && storeJobListSearchForm.keys != '')}}">
|
|
<view class="tc p20 f12 c045">没有符合条件的职位</view>
|
|
</block>
|
|
<block wx:else>
|
|
<view class="tc p20 f12 c045" wx:if="{{!hasMoreData || recordList.length == 0}}">已经到底啦~</view>
|
|
<view class="tc p20 f12 c045" wx:else>上滑加载更多</view>
|
|
</block>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
<record-window windowShow="{{recordShow}}" info="{{currentInfo}}"></record-window>
|
|
</view>
|