This commit is contained in:
Putoo
2026-04-27 17:53:43 +08:00
parent c55a104573
commit a219fbec32
10 changed files with 168 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
export class PubService {
/**
* 获取首页信息
* GET /Pub/GetMain
*/
static async GetMain() {
return await ApiService.Request("get", "/Pub/GetMain");
}
}