This commit is contained in:
chashaobao
2025-12-20 22:53:00 +08:00
parent 3533a0a877
commit a1d2f29b9d
13 changed files with 129 additions and 77 deletions

View File

@ -51,5 +51,8 @@ export const requestBatchPublishGroups = async () => {
};
export const requestSimpleGroupList = async (cityCode?: string) => {
return http.post<SimpleGroupInfo[]>(API.SIMPLE_GROUP_LIST, { data: { cityCode } });
return http.post<SimpleGroupInfo[]>(API.SIMPLE_GROUP_LIST, {
data: { cityCode },
contentType: 'application/x-www-form-urlencoded',
});
};