|
|
|
|
@ -44,13 +44,14 @@
|
|
|
|
|
<span>{{ jobDetail.gender }}</span>
|
|
|
|
|
<span>{{ jobDetail.age }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="jobtag">
|
|
|
|
|
<!-- <span>返费</span> -->
|
|
|
|
|
<a-tag :color="labelColor[index % labelColor.length]" v-for="(item, index) in jobDetail.jobRequestLabelNames" :key="index">{{ item }}</a-tag>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="height: 27px" v-if="!jobDetail.jobRequestLabelNames" class="jobtag">
|
|
|
|
|
<div style="height: 27px" v-if="jobDetail.jobRequestLabelNames == ''" class="jobtag">
|
|
|
|
|
|
|
|
|
|
<a-tag :color="labelColor[1]">暂无要求</a-tag>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="jobtag" v-else>
|
|
|
|
|
|
|
|
|
|
<a-tag :color="labelColor[index % labelColor.length]" v-for="(item, index) in jobDetail.jobRequestLabelNames" :key="index">{{ item }}</a-tag>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="jobtag1" v-if="jobDetail.jobSpecialLabelNames != ''">
|
|
|
|
|
<!-- <span>返费</span> -->
|
|
|
|
|
<a-tag v-for="(item, index) in jobDetail.jobSpecialLabelNames" :key="index">{{ item }}</a-tag>
|
|
|
|
|
@ -318,7 +319,12 @@ export default {
|
|
|
|
|
this.jobDetail.minMonthlyPayStr = this.jobDetail.minMonthlyPay / 100;
|
|
|
|
|
this.store = data.data;
|
|
|
|
|
this.jobDetail.district = disposeJobListData(data.data).district;
|
|
|
|
|
this.retrunFee = setReturnFee(data.data.returnFee, data.data.returnFeeType);
|
|
|
|
|
if (this.jobDetail.jobType == 2) {
|
|
|
|
|
this.retrunFee =setReturnFee(data.data.agencyReturnFee, data.data.agencyReturnFeeType);
|
|
|
|
|
}else{
|
|
|
|
|
this.retrunFee = setReturnFee(data.data.returnFee, data.data.returnFeeType);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(isNotEmptyCheck(this.jobDetail.jobSpecialLabelNames)){
|
|
|
|
|
this.jobDetail.jobSpecialLabelNames = new String(this.jobDetail.jobSpecialLabelNames).split(',')
|
|
|
|
|
|