From f6dc5884ba370ebffb15715f8a9ee7331b4af1d8 Mon Sep 17 00:00:00 2001 From: qsh <> Date: Thu, 13 Jun 2024 17:18:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/Clue/Pool/Comp/DrawerClue.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/views/Clue/Pool/Comp/DrawerClue.vue b/src/views/Clue/Pool/Comp/DrawerClue.vue index f1feacf..e17dc38 100644 --- a/src/views/Clue/Pool/Comp/DrawerClue.vue +++ b/src/views/Clue/Pool/Comp/DrawerClue.vue @@ -176,8 +176,10 @@ const operateRecordList = ref([]) const dialogMap = ref(null) const aMap = ref(null) +const clueId = ref('') + function getFollowList() { - FollowApi.getFollowList({ clueId: id }).then((data) => { + FollowApi.getFollowList({ clueId: clueId.value }).then((data) => { followRecordList.value = data.map((item) => ({ operateUserName: item.operateUserName, centent: item.centent, @@ -189,6 +191,7 @@ function getFollowList() { } async function open(id) { + clueId.value = id try { getFollowList() ClueApi.getOpearateRecord({ clueId: id }).then((data) => {