This commit is contained in:
Putoo
2026-04-28 11:44:35 +08:00
parent 2c437fe553
commit d636e98022
9 changed files with 27 additions and 1420 deletions

View File

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