This commit is contained in:
qsh
2024-09-10 17:00:39 +08:00
parent 7de4adeaad
commit 8a857e03af
2 changed files with 6 additions and 3 deletions

View File

@@ -100,7 +100,10 @@ const queryFormRef = ref() // 搜索的表单
const getList = async () => {
loading.value = true
try {
const data = await NotifyMessageApi.getMyNotifyMessagePage(queryParams)
const data = await NotifyMessageApi.getMyNotifyMessagePage({
...queryParams,
roleId: userStore.getUser?.currentRole
})
list.value = data.list
total.value = data.total
} finally {