123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <template>
- <div>
- <div v-for="val in items" :key="val.id" class="itemBox mb-3" style="height: 162px;">
- <div class="d-flex justify-space-between" style="padding: 10px 20px;">
- <div class="position">
- <div :class="['d-flex' ,'align-center']">
- <svg-icon class="mr-3" name="pin" size="25"></svg-icon>
- <span v-if="val.name.indexOf('style')" v-html="val.name" class="position-name"></span>
- <span v-else class="position-name">{{ val.name }}</span>
- </div>
- <div :class="['mt-3', 'other-info', 'ellipsis']">
- <span>{{ val.areaName }}</span>
- <span class="lines" v-if="val.areaName && val.eduName"></span>
- <span>{{ val.eduName }}</span>
- <span class="lines"></span>
- <span>{{ val.expName }}</span>
- <span class="lines"></span>
- <span v-if="!val.payFrom && !val.payTo">面议</span>
- <span v-else>{{ val.payFrom ? val.payFrom + '-' : '' }}{{ val.payTo }}{{ val.payName ? '/' + val.payName : '' }}</span>
- <span class="lines"></span>
- <span>{{ val.positionName }}</span>
- </div>
- <div v-if="val?.hire" class="mt-2">
- <v-chip v-if="val?.hirePrice && val.hirePrice > 0" class="mr-3" label color="primary" size="small">赏金:{{ commissionCalculation(val.hirePrice, 1) }}元</v-chip>
- </div>
- </div>
- <div class="d-flex align-center">
- <v-chip v-if="(val.status-0) === 99" color="warning" label>职位待发布,支付后成功后自动发布</v-chip>
- <v-chip v-if="val.status === '1'" color="error" class="cursor-pointer" label style="text-decoration: underline;" @click="handleAction(1, val)">职位已关闭,点击激活职位</v-chip>
- </div>
- </div>
- <div class="bottom pa-5 d-flex justify-space-between align-center">
- <div>{{ $t('position.refreshTime') }} :{{ timesTampChange(val.updateTime, 'Y-M-D') }}</div>
- <div class="d-flex align-center">
- <span v-if="(val.status-0) === 99" class="cursor-pointer color-primary" @click="toPay(val)">去支付</span>
- <span v-if="(val.status-0) === 99" class="lines"></span>
- <span v-if="(val.status - 0) !== 99 && val.status !== '1'" class="cursor-pointer actions" @click="handleAction(0, val)">{{ $t('common.close') }}</span>
- <span v-if="(val.status - 0) !== 99 && val.status !== '1'" class="lines"></span>
- <span class="cursor-pointer" @click="handleEdit(val)">编辑</span>
- </div>
- </div>
- </div>
- </div>
- <confirmPaymentDialog
- v-if="showConfirmPaymentDialog"
- :cost="cost"
- :spuId="spuId"
- :spuName="spuName"
- :orderType="2"
- @paySuccess="paySuccess"
- @close="showConfirmPaymentDialog = false"
- ></confirmPaymentDialog>
- </template>
- <script setup>
- import { commissionCalculation } from '@/utils/position'
- defineOptions({ name: 'enterprise-position-item'})
- import { ref } from 'vue'
- import { useRouter } from 'vue-router'
- import { timesTampChange } from '@/utils/date'
- import { useI18n } from '@/hooks/web/useI18n'
- import { closeJobAdvertised, enableJobAdvertised } from '@/api/position'
- import Snackbar from '@/plugins/snackbar'
- import confirmPaymentDialog from '@/components/pay/confirmPaymentDialog.vue'
- const { t } = useI18n()
- const emit = defineEmits(['refresh'])
- defineProps({
- items: Array
- })
- const showConfirmPaymentDialog = ref(false)
- const cost = ref(0)
- const spuId = ref('')
- const spuName = ref('')
- const toPay = (val) => {
- spuId.value = val.id || ''
- spuName.value = val.name || ''
- cost.value = val.hirePrice
- // 打开支付弹窗
- showConfirmPaymentDialog.value = true
- }
- // 支付成功
- const paySuccess = async () => {
- showConfirmPaymentDialog.value = false
- setTimeout(() => {
- emit('refresh')
- }, 1000)
- }
- const apiList = [ closeJobAdvertised, enableJobAdvertised ]
- // 职位关闭、激活
- const handleAction = async (index, { id }) => {
- const ids = [id]
- if (!ids.length && !index) return
- await apiList[index](ids)
- Snackbar.success(t('common.operationSuccessful'))
- emit('refresh')
- }
- const router = useRouter()
- // 职位编辑
- const handleEdit = (val) => {
- router.push(`/recruit/enterprise/hirePosition/edit?id=${val.id}`)
- }
- </script>
- <style scoped lang="scss">
- .itemBox {
- position: relative;
- border: 1px solid #e5e6eb;
- }
- .position-name {
- color: var(--color-333);
- font-size: 19px;
- }
- .position {
- max-width: 46%;
- position: relative;
- .item-select {
- position: absolute;
- left: -8px;
- top: -13px;
- }
- }
- .lines {
- display: inline-block;
- width: 1px;
- height: 17px;
- vertical-align: middle;
- background-color: #e0e0e0;
- margin: 0 10px;
- }
- .other-info {
- font-size: 15px;
- color: var(--color-666);
- }
- .bottom {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 40px;
- background-color: #f7f8fa;
- font-size: 14px;
- color: var(--color-888);
- }
- .actions:hover {
- color: var(--v-primary-base);
- }
- </style>
|