feat: 通知中心

This commit is contained in:
wwz
2025-04-10 14:29:10 +08:00
parent c5f75a20af
commit 5b30b23ad3
11 changed files with 90 additions and 48 deletions

View File

@@ -34,7 +34,7 @@ const Api = {
},
edit(data: any) {
return request<any>({
url: `${baseURL}/read`,
url: `${baseURL}/syncNotice/read`,
method: "put",
data,
});
@@ -42,7 +42,7 @@ const Api = {
delete(id: string | number) {
return request<any>({
url: `${baseURL}/syncNotice/` + id,
url: `${baseURL}/syncNotice?id=` + id,
method: "delete",
});
},