f
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
CI / CI OK (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Lock Threads / action (push) Has been cancelled
Issue Close Require / close-issues (push) Has been cancelled
Close stale issues / stale (push) Has been cancelled

This commit is contained in:
2026-04-18 12:05:45 +08:00
parent e91a8f8664
commit beddbf97ee
6 changed files with 65 additions and 26 deletions

View File

@@ -58,11 +58,29 @@ async function getNotificationList(params: Recordable<any>) {
return requestClient.get<NotificationApi.NotificationList>(
'/notification/list',
{
params,
// 某些环境下 GET 列表会被缓存,导致编辑后 query/search 仍看到旧数据。
// 增加时间戳参数与 no-cache 头,确保每次都拿最新列表。
params: {
...params,
_ts: Date.now(),
},
headers: {
'Cache-Control': 'no-cache',
Pragma: 'no-cache',
},
},
);
}
/**
* 获取通知详情(按 ID
*/
async function getNotificationDetail(id: number) {
return requestClient.get<NotificationApi.NotificationItem>(
`/notification/detail/${id}`,
);
}
/**
* 创建通知
*/
@@ -100,6 +118,7 @@ async function deleteNotification(id: number) {
export {
createNotification,
deleteNotification,
getNotificationDetail,
getNotificationList,
updateNotification,
};