Ver código fonte

Merge branch 'dev' of https://git.citupro.com/zhengnaiwen_citu/menduner into dev

lifanagju_citu 11 meses atrás
pai
commit
2f95fe21b3

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

@@ -119,8 +119,7 @@ const handleLogout = async () => {
 }
 
 const items = ref([
-  // { title: '联系人信息', icon: 'mdi-account-outline', change: () => router.push({ path: '/resume' }) },
-  // { title: '账号管理', icon: 'mdi-cog-outline', change: () => router.push({ path: '/personalAccount/accountBinding' }) },
+  { title: t('enterprise.personalInformationSettings'), icon: 'mdi-account-cog', change: () => router.push({ path: '/enterprise/informationSettings' }) },
   { title: t('setting.switchToJobSeeker'), icon: 'mdi-swap-horizontal', change: handleLogout },
   { title: t('setting.logOut'), icon: 'mdi-logout', change: handleLogout }
 ])

+ 1 - 0
src/locales/en.js

@@ -146,6 +146,7 @@ export default {
       enterpriseVideo: 'Enterprise Video',
       recruitmentQRCode: 'Recruitment QR Code',
     },
+    personalInformationSettings: 'Personal information settings'
   },
   resume: {
     basicInfo: 'Basic Information',

+ 1 - 0
src/locales/zh-CN.js

@@ -146,6 +146,7 @@ export default {
       enterpriseVideo: '企业视频',
       recruitmentQRCode: '招聘二维码',
     },
+    personalInformationSettings: '个人信息设置'
   },
   resume: {
     basicInfo: '基础信息',

+ 9 - 1
src/router/modules/enterprise.js

@@ -165,6 +165,14 @@ const enterprise = [
           enName: 'Enterprise Information Settings'
         },
         component: () => import('@/views/enterprise/systemManagement/informationSettings.vue')
+      },
+      {
+        path: '/enterprise/informationSettings',
+        meta: {
+          title: '个人信息设置',
+          enName: 'Personal information settings'
+        },
+        component: () => import('@/views/enterprise/informationSetting/index.vue')
       }
     ]
   },
@@ -187,6 +195,6 @@ const enterprise = [
         }
       }
     ]
-  },
+  }
 ]
 export default enterprise

+ 11 - 0
src/views/enterprise/informationSetting/index.vue

@@ -0,0 +1,11 @@
+<template>
+  <div>个人信息设置</div>
+</template>
+
+<script setup>
+defineOptions({ name: 'information-setting'})
+</script>
+
+<style scoped lang="scss">
+
+</style>