This commit is contained in:
Putoo
2026-05-18 13:28:20 +08:00
parent 78759387f7
commit 974421ce9b
13 changed files with 200 additions and 39 deletions

View File

@@ -6,4 +6,12 @@ export class PubService {
static async GetMain(sid: string) {
return await ApiService.Request("get", "/Pub/GetMain", { sid });
}
/**
* GetNoticeData
* GET /Pub/GetNoticeData
*/
static async GetNoticeData(page: number, limit: number) {
return await ApiService.Request("get", "/Pub/GetNoticeData", { page, limit });
}
}