| 
					
				 | 
			
			
				@@ -110,7 +110,7 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 <script setup> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 defineOptions({ name: 'NewTalentMapAnnotation' }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import { ref } from 'vue' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-import { getLabelingList } from '@/api/recruit/enterprise/talentMap/labeling' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import { getLabelingList, getCardList } from '@/api/recruit/enterprise/talentMap/labeling' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import { getTalentTagList } from '@/api/recruit/enterprise/talentMap/tag' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import Snackbar from '@/plugins/snackbar' 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 import Confirm from '@/plugins/confirm' 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -155,7 +155,8 @@ const getList = async () => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	loading.value = true 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	try { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		const data = await getLabelingList({ query_requirement: content.value }) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-		console.log(data, '列表========') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+		const card = await getCardList() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+		console.log(data, '列表========', card) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		items.value = data || [] 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	} finally { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		loading.value = false 
			 |