|
@@ -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
|