| 
					
				 | 
			
			
				@@ -331,7 +331,7 @@ const shareUrl = ref('') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 const userInfo = ref(localStorage.getItem('userInfo') ? JSON.parse(localStorage.getItem('userInfo')) : {}) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 const handleShare = async () => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   // 分享链接携带参数: 用户id、职位id 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  if (!getToken()) return  quickLogonOpen() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (!getToken()) return quickLogonOpen() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   generateAndDownloadImage() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   shareUrl.value = '/shareJob?' + new URLSearchParams({ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     jobId: id, 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -342,7 +342,7 @@ const handleShare = async () => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 // 收藏&取消收藏职位 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 const handleCollection = async () => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  if (!getToken()) return  quickLogonOpen() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (!getToken()) return quickLogonOpen() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   const api = isCollection.value ? getPersonJobUnfavorite : getPersonJobFavorite 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   await api(isCollection.value ? id : { jobId: id }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   await getCollectionStatus() 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -387,7 +387,7 @@ const showResume = ref(false) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 const resumeList = ref([]) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 const selectResume = ref() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 const handleDelivery = async () => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  if (!getToken()) return  quickLogonOpen() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (!getToken()) return quickLogonOpen() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   if (delivery.value) return Snackbar.warning(t('resume.alreadyResume')) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   const result = await getPersonResumeCv() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   resumeList.value = result 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -422,7 +422,7 @@ const handleSubmit = async (val) =>{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 // 沟通 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 const toDetails = async (info) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-  if (!getToken()) return  quickLogonOpen() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  if (!getToken()) return quickLogonOpen() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				   try { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     const userId = info.contact.userId 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     const enterpriseId = info.contact.enterpriseId 
			 |