|
|
|
@ -194,14 +194,20 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div style="display: flex">
|
|
|
|
<div style="display: flex">
|
|
|
|
<div class="jobpricehour">
|
|
|
|
<div class="jobpricehour">
|
|
|
|
<template v-if="jobDetail.hourlyPay"
|
|
|
|
<!-- <template v-if="jobDetail.hourlyPay"
|
|
|
|
><span>{{ jobDetail.hourlyPay }}</span
|
|
|
|
><span>{{ jobDetail.hourlyPay }}</span
|
|
|
|
>元/小时</template
|
|
|
|
>元/小时</template
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<template v-else-if="jobDetail.dayPay"
|
|
|
|
<template v-else-if="jobDetail.dayPay"
|
|
|
|
><span>{{ jobDetail.dayPay }}</span
|
|
|
|
><span>{{ jobDetail.dayPay }}</span
|
|
|
|
>元/日</template
|
|
|
|
>元/日</template
|
|
|
|
>
|
|
|
|
> -->
|
|
|
|
|
|
|
|
{{
|
|
|
|
|
|
|
|
getSalaryClassifyValue(
|
|
|
|
|
|
|
|
jobDetail.salaryClassify,
|
|
|
|
|
|
|
|
jobDetail.salaryClassifyValue
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="jobpricemonth">
|
|
|
|
<div class="jobpricemonth">
|
|
|
|
@ -649,7 +655,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
import { getJobDetailApi } from "../../api/job";
|
|
|
|
import { getJobDetailApi } from "../../api/job";
|
|
|
|
import { disposeJobListData } from "../../utils/commonUtil";
|
|
|
|
import {
|
|
|
|
|
|
|
|
disposeJobListData,
|
|
|
|
|
|
|
|
getSalaryClassifyValue,
|
|
|
|
|
|
|
|
} from "../../utils/commonUtil";
|
|
|
|
import recommend from "../../components/FirstJob/components/recommend.vue";
|
|
|
|
import recommend from "../../components/FirstJob/components/recommend.vue";
|
|
|
|
import { nationlist } from "../../utils/datalist";
|
|
|
|
import { nationlist } from "../../utils/datalist";
|
|
|
|
// import recordbill from "@/components/FirstJob/components/recordbill.vue";
|
|
|
|
// import recordbill from "@/components/FirstJob/components/recordbill.vue";
|
|
|
|
@ -836,6 +845,9 @@ export default {
|
|
|
|
this.$router.push({ name: "recordbill", params: this.storeInfo });
|
|
|
|
this.$router.push({ name: "recordbill", params: this.storeInfo });
|
|
|
|
sessionStorage.setItem("CURRENT_FIRM", JSON.stringify(this.storeInfo));
|
|
|
|
sessionStorage.setItem("CURRENT_FIRM", JSON.stringify(this.storeInfo));
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
getSalaryClassifyValue(salaryClassify, salaryClassifyValue) {
|
|
|
|
|
|
|
|
return getSalaryClassifyValue(salaryClassify, salaryClassifyValue);
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|