From 97ef21c366bfac78a05fdcbf47f0be1349fd9da1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=88=90?= Date: Tue, 16 Sep 2025 10:01:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E9=A1=B5=E4=B8=8D=E8=A6=81=20load=20=20=EF=BC=8C=E6=8F=90?= =?UTF-8?q?=E9=AB=98=E6=B5=81=E7=95=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/listApi.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/listApi.ts b/src/services/listApi.ts index 4b9abd4..84692c5 100644 --- a/src/services/listApi.ts +++ b/src/services/listApi.ts @@ -25,7 +25,7 @@ export const getGamesList = async (params?: Record) => { */ // const isIntegrate = params?.order === '0'; // const fetchApi = isIntegrate ? '/games/integrate_list' : '/games/list' - return httpService.post('/games/list', params, { showLoading: true }) + return httpService.post('/games/list', params, { showLoading: false }) } catch (error) { console.error("列表数据获取失败:", error); throw error; @@ -39,7 +39,7 @@ export const getGamesList = async (params?: Record) => { */ export const getGamesIntegrateList = async (params?: Record) => { try { - return httpService.post('/games/integrate_list', params, { showLoading: true }) + return httpService.post('/games/integrate_list', params, { showLoading: false }) } catch (error) { console.error("列表数据获取失败:", error); throw error;