fix:获得所有枚举方法的请求方式修改

This commit is contained in:
chenpingsen
2024-07-25 14:35:34 +08:00
parent a1b3ee2c8c
commit 6478070bd8

View File

@@ -46,7 +46,7 @@ export const getAllEnum = async ({
api = `${BASE_URL}/operation/enum/getAllEnum`,
params = {},
}: dictHttpConfig) => {
const res = await http.get(api, params);
const res = await http.post(api, params);
return Promise.resolve(res);
};