|
@@ -1,6 +1,6 @@
|
|
<!-- 人才库 - 人才详情 -->
|
|
<!-- 人才库 - 人才详情 -->
|
|
<template>
|
|
<template>
|
|
- <div class="white-bgc py-2 d-flex justify-center" style="width: 100%;">
|
|
|
|
|
|
+ <div class="white-bgc pt-2 pb-16 d-flex justify-center" style="width: 100%;">
|
|
<div style="width: 940px;overflow-y: auto;background: none;" class=" pa-3 mr-3">
|
|
<div style="width: 940px;overflow-y: auto;background: none;" class=" pa-3 mr-3">
|
|
<!-- 基本信息 -->
|
|
<!-- 基本信息 -->
|
|
<baseInfo class="mt-5"></baseInfo>
|
|
<baseInfo class="mt-5"></baseInfo>
|
|
@@ -12,7 +12,7 @@
|
|
<!-- 职业技能 -->
|
|
<!-- 职业技能 -->
|
|
<div class="d-flex mt-8">
|
|
<div class="d-flex mt-8">
|
|
<span class="mr-6">{{ $t('resume.vocationalSkills') }}</span>
|
|
<span class="mr-6">{{ $t('resume.vocationalSkills') }}</span>
|
|
- <!-- <vocationalSkills style="flex: 1;"></vocationalSkills> -->
|
|
|
|
|
|
+ <vocationalSkills style="flex: 1;"></vocationalSkills>
|
|
</div>
|
|
</div>
|
|
<!-- 求职意向 -->
|
|
<!-- 求职意向 -->
|
|
<div class="d-flex mt-8">
|
|
<div class="d-flex mt-8">
|
|
@@ -27,17 +27,22 @@
|
|
<!-- 项目经历 -->
|
|
<!-- 项目经历 -->
|
|
<div class="d-flex mt-8">
|
|
<div class="d-flex mt-8">
|
|
<span class="mr-6">{{ $t('resume.projectExperience') }}</span>
|
|
<span class="mr-6">{{ $t('resume.projectExperience') }}</span>
|
|
- <!-- <projectExperience style="flex: 1;"></projectExperience> -->
|
|
|
|
|
|
+ <projectExperience style="flex: 1;"></projectExperience>
|
|
</div>
|
|
</div>
|
|
<!-- 培训经历 -->
|
|
<!-- 培训经历 -->
|
|
<div class="d-flex mt-8">
|
|
<div class="d-flex mt-8">
|
|
<span class="mr-6">{{ $t('resume.trainingExperience') }}</span>
|
|
<span class="mr-6">{{ $t('resume.trainingExperience') }}</span>
|
|
- <!-- <trainingExperience style="flex: 1;"></trainingExperience> -->
|
|
|
|
|
|
+ <trainingExperience style="flex: 1;"></trainingExperience>
|
|
</div>
|
|
</div>
|
|
<!-- 教育经历 -->
|
|
<!-- 教育经历 -->
|
|
<div class="d-flex mt-8">
|
|
<div class="d-flex mt-8">
|
|
<span class="mr-6">{{ $t('resume.educationExp') }}</span>
|
|
<span class="mr-6">{{ $t('resume.educationExp') }}</span>
|
|
- <!-- <educationExp style="flex: 1;"></educationExp> -->
|
|
|
|
|
|
+ <educationExp style="flex: 1;"></educationExp>
|
|
|
|
+ </div>
|
|
|
|
+ <!-- 附件简历 -->
|
|
|
|
+ <div class="d-flex mt-8">
|
|
|
|
+ <span class="mr-6">{{ $t('resume.attachmentResume') }}</span>
|
|
|
|
+ <attachmentResume style="flex: 1;"></attachmentResume>
|
|
</div>
|
|
</div>
|
|
<!-- -->
|
|
<!-- -->
|
|
</div>
|
|
</div>
|
|
@@ -59,8 +64,13 @@
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
import baseInfo from './details/baseInfo.vue'
|
|
import baseInfo from './details/baseInfo.vue'
|
|
|
|
+import vocationalSkills from './details/vocationalSkills.vue'
|
|
import jobIntention from './details/jobIntention.vue'
|
|
import jobIntention from './details/jobIntention.vue'
|
|
import workExperience from './details/workExperience.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'
|
|
defineOptions({name: 'enterprise-talentPool-details'})
|
|
defineOptions({name: 'enterprise-talentPool-details'})
|
|
|
|
|
|
const advantage = "1、熟悉 Java 技术平台,并稳定形成生产力,CCF 中国计算机学会会员,获得微软 MCP、MCSA 认证。 \n2、熟悉通用缓存/DB /搜索引擎/消息队列等中间件。对业内高可用高并发及分布式技术解决方案有充分理解。\n3、同时具备常用大数据解决方案实践经验,包括实时计算(Storm/Flink )及离线计算(Hive/ETL/Spark)。 \n4、对搜索推荐/订单交易等业务方向具备多年实践经验。\n5、上班。"
|
|
const advantage = "1、熟悉 Java 技术平台,并稳定形成生产力,CCF 中国计算机学会会员,获得微软 MCP、MCSA 认证。 \n2、熟悉通用缓存/DB /搜索引擎/消息队列等中间件。对业内高可用高并发及分布式技术解决方案有充分理解。\n3、同时具备常用大数据解决方案实践经验,包括实时计算(Storm/Flink )及离线计算(Hive/ETL/Spark)。 \n4、对搜索推荐/订单交易等业务方向具备多年实践经验。\n5、上班。"
|
|
@@ -69,6 +79,7 @@ const operateItems = [
|
|
{ text: '不合适', icon: 'mdi-close-circle-outline' },
|
|
{ text: '不合适', icon: 'mdi-close-circle-outline' },
|
|
{ text: '发起对话', icon: 'mdi-chat-processing-outline' },
|
|
{ text: '发起对话', icon: 'mdi-chat-processing-outline' },
|
|
{ text: '加入人才库', icon: 'mdi-tab-plus' },
|
|
{ text: '加入人才库', icon: 'mdi-tab-plus' },
|
|
|
|
+ { text: '操作记录', icon: 'mdi-clock-edit-outline' },
|
|
]
|
|
]
|
|
</script>
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|