|
@@ -37,6 +37,7 @@ 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 { resumePersonFillAll } from '@/api/recruit/personal/resume'
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
const scrollBox = ref()
|
|
@@ -86,6 +87,12 @@ const complete = (val) => {
|
|
|
items.value.forEach(e => {
|
|
|
if (e.status) completeNum.value++
|
|
|
})
|
|
|
+
|
|
|
+ // 首次简历填写完成百分百加积分
|
|
|
+ const allCompleted = items.value.every(e => e.status)
|
|
|
+ if (allCompleted) {
|
|
|
+ resumePersonFillAll()
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
|