Browse Source

沟通跳转个人中心

Xiao_123 6 days ago
parent
commit
98a47245b1

+ 1 - 1
src/views/recruit/components/message/components/chatting.vue

@@ -389,7 +389,7 @@ const handleRefuse = (val) => {
 
 
 // 跳转个人中心-面试
 // 跳转个人中心-面试
 const handleToCenter = () => {
 const handleToCenter = () => {
-  router.push({ path: '/recruit/personal/personalCenter', query: { showInterviewScheduleMore: true } })
+  router.push({ path: '/recruit/personal/personalCenter' })
 }
 }
 
 
 // 简历预览
 // 简历预览

+ 3 - 2
src/views/recruit/enterprise/newTalentMap/labeling/index.vue

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