From 6478070bd86af294606cbebb7f7a8733a528ea41 Mon Sep 17 00:00:00 2001 From: chenpingsen Date: Thu, 25 Jul 2024 14:35:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E8=8E=B7=E5=BE=97=E6=89=80=E6=9C=89?= =?UTF-8?q?=E6=9E=9A=E4=B8=BE=E6=96=B9=E6=B3=95=E7=9A=84=E8=AF=B7=E6=B1=82?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hx-ai-intelligent/src/api/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hx-ai-intelligent/src/api/index.ts b/hx-ai-intelligent/src/api/index.ts index 487df1a..cab3c80 100644 --- a/hx-ai-intelligent/src/api/index.ts +++ b/hx-ai-intelligent/src/api/index.ts @@ -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); };