|
@@ -21,8 +21,8 @@
|
|
<div class="ml-3 cursor-pointer" @click="handleLogout">我要求职</div>
|
|
<div class="ml-3 cursor-pointer" @click="handleLogout">我要求职</div>
|
|
<div class="line"></div>
|
|
<div class="line"></div>
|
|
<div class="d-flex align-center ml-6">
|
|
<div class="d-flex align-center ml-6">
|
|
- <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="cursor-pointer" @click="router.push({ path: '/recruit/enterprise/memberCenter/myAccount' })">{{ $t('enterprise.account.accountBalances') }}:{{ enterpriseUserAccount?.balance || 0 }}元</div>
|
|
|
|
+ <div class="ml-5 cursor-pointer" @click="router.push({ path: '/recruit/enterprise/memberCenter/myAccount' })">{{ $t('enterprise.account.remainingPoints') }}:{{ enterpriseUserAccount?.point || 0 }}点</div>
|
|
</div>
|
|
</div>
|
|
<div class="line mr-5"></div>
|
|
<div class="line mr-5"></div>
|
|
<svg-icon @click="handleToVip" name="vip" size="30" class="cursor-pointer"></svg-icon>
|
|
<svg-icon @click="handleToVip" name="vip" size="30" class="cursor-pointer"></svg-icon>
|
|
@@ -119,7 +119,7 @@ onMounted(() => {
|
|
})
|
|
})
|
|
|
|
|
|
const handleToVip = () => {
|
|
const handleToVip = () => {
|
|
- router.push({ path: '/recruit/enterprise/memberCenter/myAccount' })
|
|
|
|
|
|
+ router.push({ path: '/recruit/enterprise/memberCenter/myMembers' })
|
|
}
|
|
}
|
|
|
|
|
|
// const handleLogoClick = () => { router.push({ path: '/recruit/enterprise'}) }
|
|
// const handleLogoClick = () => { router.push({ path: '/recruit/enterprise'}) }
|
|
@@ -138,7 +138,7 @@ const handleLogout = async () => {
|
|
const enterpriseList = ref([])
|
|
const enterpriseList = ref([])
|
|
|
|
|
|
const menuList = ref([
|
|
const menuList = ref([
|
|
- { title: t('enterprise.account.myAccount'), icon: 'mdi-account', change: () => router.push({ path: '/recruit/enterprise/memberCenter/myPoints' }) },
|
|
|
|
|
|
+ { title: t('enterprise.account.myAccount'), icon: 'mdi-account', change: () => router.push({ path: '/recruit/enterprise/memberCenter/myAccount' }) },
|
|
{ title: t('vipPackage.purchasePackage'), icon: 'mdi-gift-outline', change: () => window.open('/recruit/enterprise/purchasePackage') },
|
|
{ title: t('vipPackage.purchasePackage'), icon: 'mdi-gift-outline', change: () => window.open('/recruit/enterprise/purchasePackage') },
|
|
{ title: t('enterprise.personalInformationSettings'), icon: 'mdi-account-cog', change: () => router.push({ path: '/recruit/enterprise/informationSettings' }) },
|
|
{ title: t('enterprise.personalInformationSettings'), icon: 'mdi-account-cog', change: () => router.push({ path: '/recruit/enterprise/informationSettings' }) },
|
|
{ title: t('setting.switchToOtherCompany'), icon: 'mdi-home-switch', hidden: enterpriseList.value?.length < 2, change: () => handleSwitchToAnotherEnterprise },
|
|
{ title: t('setting.switchToOtherCompany'), icon: 'mdi-home-switch', hidden: enterpriseList.value?.length < 2, change: () => handleSwitchToAnotherEnterprise },
|