|
@@ -1,15 +1,16 @@
|
|
<template>
|
|
<template>
|
|
<view v-if="list.length > 0">
|
|
<view v-if="list.length > 0">
|
|
- <view v-for="(item, index) in list" :key="index" @click="toDetail(1, item)">
|
|
|
|
|
|
+ <view v-for="(item, index) in list" :key="index">
|
|
<!-- 职位信息 -->
|
|
<!-- 职位信息 -->
|
|
- <view class="list-shape">
|
|
|
|
|
|
+ <view class="list-shape" @click="toDetail(1, item)">
|
|
<!-- 职位 -->
|
|
<!-- 职位 -->
|
|
<view class="titleBox my-5">
|
|
<view class="titleBox my-5">
|
|
<view class="d-flex align-center">
|
|
<view class="d-flex align-center">
|
|
|
|
+ <uni-icons v-if="item.job?.hire" class="icon-a-1_zhaopin ss-m-r-10" custom-prefix="iconfont" color="#e03506" size="25"/>
|
|
<view style="font-size: 16px;font-weight: 700;color: black;">{{item.job?.name}}</view>
|
|
<view style="font-size: 16px;font-weight: 700;color: black;">{{item.job?.name}}</view>
|
|
<template v-if="item.job?.hire">
|
|
<template v-if="item.job?.hire">
|
|
- <uni-icons class="icon-a-1_zhaopin" custom-prefix="iconfont" color="#e03506"/>
|
|
|
|
- <uni-tag
|
|
|
|
|
|
+ <uni-tag
|
|
|
|
+ class="ss-m-l-10"
|
|
v-if="item?.job?.hirePrice && item?.job?.hirePrice > 0"
|
|
v-if="item?.job?.hirePrice && item?.job?.hirePrice > 0"
|
|
:text="`赏金:${commissionCalculation(item.job.hirePrice, 1)}元`"
|
|
:text="`赏金:${commissionCalculation(item.job.hirePrice, 1)}元`"
|
|
inverted="false"
|
|
inverted="false"
|