Initial project commit

This commit is contained in:
2026-05-09 16:40:29 +08:00
commit 02b0259a9e
267 changed files with 54891 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { get, post } from "@/utils/request";
export const getNotifications = (params) => get("/notifications", params);
export const getUnreadCount = () => get("/notifications/unread-count");
export const markAllRead = () => post("/notifications/read-all");
export const markRead = (id) => post(`/notifications/${id}/read`);