This commit is contained in:
chashaobao
2025-12-17 00:10:53 +08:00
parent e5facdff6a
commit c696e93bc5
3 changed files with 26 additions and 5 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',
});
};