|
@@ -39,6 +39,8 @@ import educationExp from './components/educationExp.vue'
|
|
|
import workExperience from './components/workExperience.vue'
|
|
|
import projectExperience from './components/projectExperience.vue'
|
|
|
import vocationalSkills from './components/vocationalSkills.vue'
|
|
|
+import { useI18n } from '@/hooks/web/useI18n'
|
|
|
+const { t } = useI18n()
|
|
|
import { ref } from 'vue'
|
|
|
import { onMounted } from 'vue';
|
|
|
const scrollBox = ref()
|
|
@@ -55,14 +57,14 @@ const comList = [
|
|
|
]
|
|
|
|
|
|
const items = [
|
|
|
- { text: '基本信息', icon: 'mdi-account-outline', id: 'basicInfo' },
|
|
|
- { text: '个人优势', icon: 'mdi-account-star-outline', id: 'selfEvaluation' },
|
|
|
- { text: '求职意向', icon: 'mdi-briefcase-variant-outline', id: 'jobIntention' },
|
|
|
- { text: '教育经历', icon: 'mdi-school-outline', id: 'educationExp' },
|
|
|
- { text: '工作经历', icon: 'mdi-ballot-outline', id: 'workExperience' },
|
|
|
- { text: '项目经历', icon: 'mdi-card-text-outline', id: 'projectExperience' },
|
|
|
- { text: '培训经历', icon: 'mdi-flag-outline', id: 'trainingExperience' },
|
|
|
- { text: '职业技能', icon: 'mdi-star-check-outline', id: 'vocationalSkills' }
|
|
|
+ { text: t('resume.basicInfo'), icon: 'mdi-account-outline', id: 'basicInfo' },
|
|
|
+ { text: t('resume.personalAdvantages'), icon: 'mdi-account-star-outline', id: 'selfEvaluation' },
|
|
|
+ { text: t('resume.jobIntention'), icon: 'mdi-briefcase-variant-outline', id: 'jobIntention' },
|
|
|
+ { text: t('resume.educationExp'), icon: 'mdi-school-outline', id: 'educationExp' },
|
|
|
+ { text: t('resume.workExperience'), icon: 'mdi-ballot-outline', id: 'workExperience' },
|
|
|
+ { text: t('resume.projectExperience'), icon: 'mdi-card-text-outline', id: 'projectExperience' },
|
|
|
+ { text: t('resume.trainingExperience'), icon: 'mdi-flag-outline', id: 'trainingExperience' },
|
|
|
+ { text: t('resume.vocationalSkills'), icon: 'mdi-star-check-outline', id: 'vocationalSkills' }
|
|
|
]
|
|
|
|
|
|
onMounted(() => {
|