修改bug
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m33s

This commit is contained in:
sexygoat
2026-04-09 14:08:25 +08:00
parent cb3ba06106
commit 4656d403c2
2 changed files with 95 additions and 24 deletions

View File

@@ -28,7 +28,7 @@ export class AccountService extends BaseService {
* POST /api/admin/accounts
* @param data 账号数据
*/
static createAccount(data: CreatePlatformAccountParams): Promise<BaseResponse> {
static createAccount(data: CreatePlatformAccountParams): Promise<BaseResponse<{ ID?: number; id?: number }>> {
return this.create('/api/admin/accounts', data)
}