|
@@ -24,13 +24,14 @@
|
|
<div class="cursor-pointer" @click="router.push({ path: '/recruit/enterprise/memberCenter/myPoints' })">{{ $t('enterprise.account.accountBalances') }}:{{ enterpriseUserAccount?.balance || 0 }}元</div>
|
|
<div class="cursor-pointer" @click="router.push({ path: '/recruit/enterprise/memberCenter/myPoints' })">{{ $t('enterprise.account.accountBalances') }}:{{ enterpriseUserAccount?.balance || 0 }}元</div>
|
|
<div class="ml-5 cursor-pointer" @click="router.push({ path: '/recruit/enterprise/memberCenter/myPoints' })">{{ $t('enterprise.account.remainingPoints') }}:{{ enterpriseUserAccount?.point || 0 }}点</div>
|
|
<div class="ml-5 cursor-pointer" @click="router.push({ path: '/recruit/enterprise/memberCenter/myPoints' })">{{ $t('enterprise.account.remainingPoints') }}:{{ enterpriseUserAccount?.point || 0 }}点</div>
|
|
</div>
|
|
</div>
|
|
- <div class="line"></div>
|
|
|
|
-
|
|
|
|
|
|
+ <div class="line mr-5"></div>
|
|
|
|
+ <svg-icon @click="handleToVip" name="vip" size="30" class="cursor-pointer"></svg-icon>
|
|
|
|
+
|
|
<!-- 头像用户名 -->
|
|
<!-- 头像用户名 -->
|
|
<div class="d-flex align-center" v-if="showBall">
|
|
<div class="d-flex align-center" v-if="showBall">
|
|
<v-menu open-on-hover>
|
|
<v-menu open-on-hover>
|
|
<template v-slot:activator="{ props }">
|
|
<template v-slot:activator="{ props }">
|
|
- <div class="d-flex ml-5 pl-2 align-center cursor-pointer" v-bind="props">
|
|
|
|
|
|
+ <div class="d-flex ml-3 pl-2 align-center cursor-pointer" v-bind="props">
|
|
<v-avatar>
|
|
<v-avatar>
|
|
<v-img alt="" :src="getUserAvatar(baseInfo?.avatar, baseInfo?.sex)"></v-img>
|
|
<v-img alt="" :src="getUserAvatar(baseInfo?.avatar, baseInfo?.sex)"></v-img>
|
|
</v-avatar>
|
|
</v-avatar>
|
|
@@ -117,6 +118,10 @@ onMounted(() => {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
|
|
|
|
+const handleToVip = () => {
|
|
|
|
+ router.push({ path: '/recruit/enterprise/memberCenter/myAccount' })
|
|
|
|
+}
|
|
|
|
+
|
|
// const handleLogoClick = () => { router.push({ path: '/recruit/enterprise'}) }
|
|
// const handleLogoClick = () => { router.push({ path: '/recruit/enterprise'}) }
|
|
const handleLogoClick = () => { window.open('/') } // 点击logo
|
|
const handleLogoClick = () => { window.open('/') } // 点击logo
|
|
|
|
|