|
@@ -5,9 +5,11 @@
|
|
|
<view v-if="loading" class="vertical80-center">{{ loadingText }}</view>
|
|
|
<view v-else>
|
|
|
<view class="mt-5" style="display: flex; align-items: center;">
|
|
|
- <view v-if="info.hire" class="iconfont icon-a-1_zhaopin" style="color: #e03506; font-size: 30px;"></view>
|
|
|
<!-- 赏金 -->
|
|
|
- <view v-if="info.hire && info.hirePrice" class="hirePrice ss-m-r-10">{{ `赏金:${commissionCalculation(info.hirePrice / 100, 1)}元` }}</view>
|
|
|
+ <view v-if="info.hire && info.hirePrice" class="hirePrice ss-m-r-10 d-flex align-center">
|
|
|
+ <view class="iconfont icon-a-1_zhaopin ss-m-r-10" style="color: #e03506; font-size: 20px;"></view>
|
|
|
+ <view>{{ `赏金:${commissionCalculation(info.hirePrice / 100, 1)}元` }}</view>
|
|
|
+ </view>
|
|
|
<image v-if="isJobFair" src="/static/svg/jobFair.svg" class="ss-m-r-10" style="width: 22px; height: 22px;"></image>
|
|
|
<!-- 职位名称 -->
|
|
|
<h2 class="JobName" style="flex: 1;">{{ formatName(info.name) }}</h2>
|