group info

This commit is contained in:
hptangxi
2025-07-06 12:16:44 +08:00
parent e5cd8f7b34
commit fd9bcc1aba
12 changed files with 124 additions and 284 deletions

View File

@@ -15,7 +15,7 @@ export const keysApi = {
},
// 更新分组
async updateGroup(groupId: number, group: Partial<Group>): Promise<void> {
async updateGroup(groupId: number, group: Partial<Group>): Promise<Group> {
const res = await http.put(`/groups/${groupId}`, group);
return res.data;
},