123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <template>
- <div style="height: calc(100vh - 50px)">
- <template v-if="showSelect">
- <div class="d-flex flex-column pb-10" style="width: 800px; min-width: 800px; height: 100%; min-height: 500px; margin: 0 auto;">
- <attachmentPage analysis @analysis="handleAnalysis"></attachmentPage>
- </div>
- </template>
- <template v-else>
- <div class="d-flex pa-3" style="height: 100%">
- <!-- 简历附件回显 -->
- <v-card class="mr-3 pa-3" style="width: 50%; height: 100%; overflow: hidden; position: relative;">
- <v-tabs v-model="tab" align-tabs="start" color="primary" bg-color="#f7f8fa">
- <v-tab :value="1">查看附件简历</v-tab>
- <v-tab :value="2">查看文本信息</v-tab>
- </v-tabs>
- <v-btn style="position: absolute; right: 12px; top: 18px;" color="primary" @click="showSelect = true">重新选择附件简历</v-btn>
- <div class="mt-3 pb-3" style="width: 100%; height: calc(100% - 48px);overflow: auto;">
- <div v-show="tab === 1" style="width: 100%; height: 100%">
- <IFrame :src="decodeURIComponent(fileUrl)" initHeight="100%"></IFrame>
- </div>
- <div v-show="tab === 2" style="width: 100%; height: 100%; overflow: auto;" class="pb-5 px-3">
- <template v-if="resumeTxt?.length">
- <div style="color: #999;" class="mb-3 text-center">简历解析(可复制文本使用)</div>
- <p v-for="(text, resumeTxtIndex) in resumeTxt" :key="'简历解析' + resumeTxtIndex" class="my-3">{{ text }}</p>
- </template>
- <div v-else style="color: #666;" class="mt-3 text-center">无简历解析文本可用</div>
- </div>
- </div>
- </v-card>
- <!-- 解析内容 -->
- <v-card class="elevation-2 pa-3" style="flex: 1; height: 100%; overflow: hidden; position: relative;" >
- <div style="height: 100%; overflow: auto;">
- <div v-for="item of formLIst" :key="item.id" :id="item.id" class="pa-3 mb-3" style="background-color: var(--color-f8);">
- <div class="resume-header mb-3">
- <div class="resume-title">{{ item.text }}</div>
- <v-btn v-if="item.id !== 'person'" variant="text" color="error" density="compact" prepend-icon="mdi-delete-outline" @click="del(item)">删除</v-btn>
- <v-btn v-else disabled variant="text" color="error" density="compact">不可删除</v-btn>
- </div>
- <component ref="componentRef" :id="item.id" :is="item.path" :data="item.data" />
- </div>
- <!-- 保存 -->
- <div style="position: absolute; bottom: 0; background-color: #fff; z-index: 99; width: 100%; border-top: 1px solid #e4e7eb;" class="py-3 ml-n3 text-center">
- <v-btn class="buttons mx-3" color="primary" @click="submit">提交(保存至在线简历)</v-btn>
- <!-- <v-btn class="ml-2" variant="text" color="primary" to="/recruit/personal/personalCenter/resume/online">返回在线简历</v-btn> -->
- </div>
- </div>
- </v-card>
- <v-overlay
- v-model="loading"
- :close-on-content-click="false"
- :no-click-animation="true"
- contained
- class="align-center justify-center"
- >
- <v-progress-circular color="primary" size="64" indeterminate></v-progress-circular>
- </v-overlay>
- </div>
- </template>
- </div>
- </template>
- <script setup>
- defineOptions({ name: 'resume-analysis'})
- import { shallowRef, ref } from 'vue'
- import { useI18n } from '@/hooks/web/useI18n'
- import IFrame from '@/components/IFrame'
- import avatar from './components/avatar.vue'
- import basicInfo from './components/basicInfo.vue'
- import selfEvaluation from './components/selfEvaluation.vue'
- import educationExp from './components/educationExp.vue'
- import workExperience from './components/workExperience.vue'
- import trainingExperience from './components/trainingExperience.vue'
- import Snackbar from '@/plugins/snackbar'
- import Confirm from '@/plugins/confirm'
- import { saveResumeInfo, resumeParser2 } from '@/api/recruit/personal/resume'
- import { useUserStore } from '@/store/user'
- import attachmentPage from '../attachment'
- import { Base64 } from 'js-base64'
- const { t } = useI18n()
- const props = defineProps({
- data: {
- type: Object,
- default: () => {}
- }
- })
- const tab = ref(1)
- const exampleList = {
- avatar: { text: t('resume.avatar'), id: 'avatar', path: avatar },
- person: { text: t('resume.basicInfo'), id: 'person', path: basicInfo },
- advantage: { text: t('resume.personalAdvantages'), id: 'advantage', path: selfEvaluation },
- eduList: { text: t('resume.educationExp'), id: 'eduList', path: educationExp },
- workList: { text: t('resume.workExperience'), id: 'workList', path: workExperience },
- trainList: { text: t('resume.trainingExperience'), id: 'trainList', path: trainingExperience },
- }
- const del = (item) => {
- Confirm('系统提示', `是否确认删除${item.text}?`).then(async () => {
- formLIst.value = formLIst.value.filter(e => e.id !== item.id)
- })
- }
- const resumeTxt = ref([]) // 查看文本信息
- const formLIst = shallowRef([])
- const transformToLIst = async (result) => {
- formLIst.value = []
- if (result && Object.keys(result)) {
- if (result.resume?.rawText) resumeTxt.value = result.resume.rawText.split('\n') || []
- if (result.person?.advantage) result.advantage = result.person.advantage
- if (result.person?.avatar) result.avatar = result.person.avatar
- // obj
- const dealObjKeys = ['avatar', 'person', 'advantage']
- dealObjKeys.forEach(key => {
- if (result[key]) {
- const obj = {...exampleList[key]}
- obj.data = result[key]
- formLIst.value.push(obj)
- }
- })
- // arr
- const dealArrKeys = ['eduList', 'workList', 'trainList']
- dealArrKeys.forEach(key => {
- if (result[key]?.length) {
- for (let index = 0; index < result[key].length; index++) {
- const obj = {...exampleList[key]}
- obj.id = obj.id + '_' + index
- obj.text = result[key].length > 1 ? obj.text + (index+1) : obj.text
- obj.data = result[key][index]
- formLIst.value.push(obj)
- }
- }
- })
- }
- }
- const result = ref({}) // ref(JSON.parse(JSON.stringify(dataObj))) // 测试
- const fileUrl = ref('')
- const showSelect = ref(true)
- const handleAnalysis = async (url) => {
- url = decodeURIComponent(url)
- if (!url) return
- showSelect.value = false
- loading.value = true
- const baseUrl = import.meta.env.VITE_PREVIEW_URL
- fileUrl.value = !url.includes('.pdf') ? `${baseUrl}/onlinePreview?url=${encodeURIComponent(Base64.encode(url))}` : url
- try {
- const data = await resumeParser2({ fileUrl: url })
- result.value = data || {}
- // result.value = {person: data.person} || {} // 测试
- await transformToLIst(result.value)
- } catch (error) {
- console.log(error)
- } finally {
- loading.value = false
- }
- }
- const componentRef = ref()
- const getValue = async () => {
- let id = ''
- let data = {}
- for (let index = 0; index < componentRef.value.length; index++) {
- const e = componentRef.value[index]
- const query = await e.submit()
- if (query && query.data) {
- data[query.id] = query.data
- } else {
- id = id ? id : query.id
- }
- }
- console.log('id:', id)
- if (id) {
- Snackbar.warning('请填写完整后提交!')
- return
- }
- // 处理data
- let obj = Object.keys(data).length ? {} : null
- const keyTransform = { // 转换给后端的key
- eduList: 'eduExp',
- workList: 'workExp',
- trainList: 'trainExp',
- }
- if (obj) {
- Object.keys(data).forEach(key => {
- if (key.includes('_')) { // 数组
- const oldKey = key.split('_')[0]
- const newKey = keyTransform[oldKey] ? keyTransform[oldKey] : oldKey
- if (!obj[newKey]) obj[newKey] = [data[key]]
- else obj[newKey].push(data[key])
- } else {
- const newKey = keyTransform[key] ? keyTransform[key] : key
- obj[newKey] = data[key]
- }
- })
- // const defaultObj = { avatar: "", person: {}, advantage: { content: '' }, tag: { tagList: [] }, jobInterested: [], eduExp: [], workExp: [], trainExp: [] } // 必传字段
- // const defaultObj = { avatar: null, person: null, advantage: null, tag: null, jobInterested: null, eduExp: null, workExp: null, trainExp: null } // 必传字段
- // obj = { ...defaultObj, ...obj }
- }
- // console.log('123456:', obj)
- return obj && Object.keys(obj).length ? JSON.stringify(obj) : null
- }
- const loading = ref(false)
- const submit = async () => {
- const obj = await getValue()
- if (!obj) return
- try {
- loading.value = true
- await saveResumeInfo(obj)
- await useUserStore().getUserBaseInfos() // 更新用户信息
- // Snackbar.success(t('common.saveMsg'))
- // setTimeout(() => { window.location.reload() }, 1000) // 刷新页面
- Confirm('系统提示', `提交成功,是否前往在线简历查看?`, { sureText: '立即前往' }).then(() => {
- window.location.href = '/recruit/personal/personalCenter/resume/online'
- })
- } catch (error) {
- console.log(error)
- } finally {
- loading.value = false
- }
- }
- </script>
- <style scoped lang="scss">
- </style>
|