salary
qsh 4 months ago
parent 47a4498b8b
commit f6dc5884ba
  1. 5
      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) => {

Loading…
Cancel
Save