|
@@ -9,36 +9,31 @@
|
|
|
<span class="mr-6">{{ $t('resume.personalAdvantages') }}</span>
|
|
|
<div style="flex: 1; white-space: pre-line; font-size: 15px;" v-if="cvData?.person?.advantage" v-html="cvData.person.advantage"></div>
|
|
|
</div>
|
|
|
- <!-- 职业技能 -->
|
|
|
- <div class="d-flex mt-8">
|
|
|
- <span class="mr-6">{{ $t('resume.vocationalSkills') }}</span>
|
|
|
- <vocationalSkills style="flex: 1;" :data="cvData.skillList"></vocationalSkills>
|
|
|
- </div>
|
|
|
<!-- 求职意向 -->
|
|
|
<div class="d-flex mt-8">
|
|
|
<span class="mr-6">{{ $t('resume.jobIntention') }}</span>
|
|
|
<jobIntention style="flex: 1;" :data="cvData.interestedList"></jobIntention>
|
|
|
</div>
|
|
|
+ <!-- 教育经历 -->
|
|
|
+ <div class="d-flex mt-8">
|
|
|
+ <span class="mr-6">{{ $t('resume.educationExp') }}</span>
|
|
|
+ <educationExp style="flex: 1;" :data="cvData.eduList"></educationExp>
|
|
|
+ </div>
|
|
|
<!-- 工作经历 -->
|
|
|
<div class="d-flex mt-8">
|
|
|
<span class="mr-6">{{ $t('resume.workExperience') }}</span>
|
|
|
<workExperience style="flex: 1;" :data="cvData.workList"></workExperience>
|
|
|
</div>
|
|
|
- <!-- 项目经历 -->
|
|
|
- <!-- <div class="d-flex mt-8">
|
|
|
- <span class="mr-6">{{ $t('resume.projectExperience') }}</span>
|
|
|
- <projectExperience style="flex: 1;" :data="cvData.projectList"></projectExperience>
|
|
|
- </div> -->
|
|
|
+ <!-- 职业技能 -->
|
|
|
+ <div class="d-flex mt-8">
|
|
|
+ <span class="mr-6">{{ $t('resume.vocationalSkills') }}</span>
|
|
|
+ <vocationalSkills style="flex: 1;" :data="cvData.skillList"></vocationalSkills>
|
|
|
+ </div>
|
|
|
<!-- 培训经历 -->
|
|
|
<div class="d-flex mt-8">
|
|
|
<span class="mr-6">{{ $t('resume.trainingExperience') }}</span>
|
|
|
<trainingExperience style="flex: 1;" :data="cvData.trainList"></trainingExperience>
|
|
|
</div>
|
|
|
- <!-- 教育经历 -->
|
|
|
- <div class="d-flex mt-8">
|
|
|
- <span class="mr-6">{{ $t('resume.educationExp') }}</span>
|
|
|
- <educationExp style="flex: 1;" :data="cvData.eduList"></educationExp>
|
|
|
- </div>
|
|
|
</div>
|
|
|
<div class="operate pa-3">
|
|
|
<v-list>
|
|
@@ -63,10 +58,8 @@ import baseInfo from './details/baseInfo.vue'
|
|
|
import vocationalSkills from './details/vocationalSkills.vue'
|
|
|
import jobIntention from './details/jobIntention.vue'
|
|
|
import workExperience from './details/workExperience.vue'
|
|
|
-// import projectExperience from './details/projectExperience.vue'
|
|
|
import trainingExperience from './details/trainingExperience.vue'
|
|
|
import educationExp from './details/educationExp.vue'
|
|
|
-// import attachmentResume from './details/attachmentResume.vue'
|
|
|
import { getPersonCvDetail } from '@/api/enterprise'
|
|
|
import { ref } from 'vue'
|
|
|
import { talkToUser, defaultTextEnt } from '@/hooks/web/useIM'
|