Xiao_123 преди 10 месеца
родител
ревизия
5fad9c4b61

+ 1 - 1
src/components/Position/longStrip.vue

@@ -7,7 +7,7 @@
           <v-btn v-if="props.showCancelBtn" class="half-button ml-3" color="primary" size="small" @click="handleCancel(val)">取消感兴趣</v-btn>
         </div>
         <div class="img-box">
-          <v-avatar :image="val.contact.avatars || 'https://minio.citupro.com/dev/menduner/7.png'" size="x-small"></v-avatar>
+          <v-avatar :image="val.contact.avatar || 'https://minio.citupro.com/dev/menduner/7.png'" size="x-small"></v-avatar>
           <span class="name">
             <span class="mx-3">{{ val.contact.name }}</span>
             <span class="gray">{{ val.contact.postNameCn }}</span>

+ 1 - 1
src/layout/company/navBar.vue

@@ -120,7 +120,7 @@ const enterpriseList = ref([])
 
 const menuList = ref([
   { title: t('enterprise.account.myAccount'), icon: 'mdi-account', change: () => router.push({ path: '/recruit/enterprise/memberCenter/myPoints' }) },
-  { title: t('vipPackage.purchasePackage'), icon: 'mdi-gift-outline', change: () => router.push({ path: '/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('setting.switchToOtherCompany'), icon: 'mdi-home-switch', hidden: enterpriseList.value?.length < 2, change: () => handleSwitchToAnotherEnterprise },
   { title: t('enterprise.registeringNewEnterprise'), icon: 'mdi-home-plus-outline', change: () => handleRegisteringNewEnterprise },

+ 1 - 1
src/views/mall/purchasePackage/index.vue

@@ -39,7 +39,7 @@
 </template>
 
 <script setup>
-defineOptions({name: 'personal-purchasePackage'})
+defineOptions({name: 'purchasePackage'})
 import { ref } from 'vue'
 const tab = ref(1)
 

+ 1 - 1
src/views/recruit/enterprise/personnelManagement/components/table.vue

@@ -95,7 +95,7 @@ const handleAction = async (type, index, item) => {
 }
 
 // 查看简历
-const handlePreviewResume = async (url, id) => {
+const handlePreviewResume = async ({ url, id }) => {
   if (!url || !id) return
   await personJobCvLook(id)
   previewFile(url)