|  | @@ -299,6 +299,7 @@ function getBaseInfo () {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  // 获取求职意向
 | 
	
		
			
				|  |  |  async function getJobInterested () {
 | 
	
		
			
				|  |  | +  intention.value = []
 | 
	
		
			
				|  |  |    const { data } = await getResumeJobInterested()
 | 
	
		
			
				|  |  |    if (!data || !data.length) {
 | 
	
		
			
				|  |  |      return
 | 
	
	
		
			
				|  | @@ -309,6 +310,7 @@ async function getJobInterested () {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  // 获取教育经历
 | 
	
		
			
				|  |  |  async function getEduExp () {
 | 
	
		
			
				|  |  | +  educationExp.value = []
 | 
	
		
			
				|  |  |    const { data: dict } = await getDict('menduner_education_type')
 | 
	
		
			
				|  |  |    if (dict.code !== 0) {
 | 
	
		
			
				|  |  |      return
 | 
	
	
		
			
				|  | @@ -330,6 +332,7 @@ async function getEduExp () {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  // 获取工作经验
 | 
	
		
			
				|  |  |  async function getWorkExp () {
 | 
	
		
			
				|  |  | +  workExp.value = []
 | 
	
		
			
				|  |  |    const { data } = await getResumeWorkExp()
 | 
	
		
			
				|  |  |    if (!data || !data.length) {
 | 
	
		
			
				|  |  |      return
 | 
	
	
		
			
				|  | @@ -345,6 +348,7 @@ async function getWorkExp () {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  // 培训经历
 | 
	
		
			
				|  |  |  async function getTrainExpData () {
 | 
	
		
			
				|  |  | +  trainExp.value = []
 | 
	
		
			
				|  |  |    const { data } = await getResumeTrainExp()
 | 
	
		
			
				|  |  |    if (!data || !data.length) {
 | 
	
		
			
				|  |  |      return
 | 
	
	
		
			
				|  | @@ -360,6 +364,7 @@ async function getTrainExpData () {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  // 职业技能
 | 
	
		
			
				|  |  |  async function getSkillExpData () {
 | 
	
		
			
				|  |  | +  skillExp.value = []
 | 
	
		
			
				|  |  |    const { data: _skillList} = await getDict('skillList', {}, 'skillList')
 | 
	
		
			
				|  |  |    const skillList = _skillList?.data
 | 
	
		
			
				|  |  |    if (!skillList || !skillList.length) {
 |