From db6f433179d7a8c6dcaf30f18962957ec993c15b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=98=BF=E6=A2=A6?= Date: Tue, 2 Jun 2026 12:55:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E7=AD=9B=E9=80=89=E7=8F=AD=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- playground/src/api/service/question-bank/task-mgr.ts | 4 ++-- playground/vite.config.mts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/playground/src/api/service/question-bank/task-mgr.ts b/playground/src/api/service/question-bank/task-mgr.ts index 029ae91..615ec9b 100644 --- a/playground/src/api/service/question-bank/task-mgr.ts +++ b/playground/src/api/service/question-bank/task-mgr.ts @@ -17,10 +17,10 @@ class TaskMgrService extends BasicService { } // 作业整体情况 - async getListRecord(recordId: any, titleId: any, markType: number) { + async getListRecord(recordId: any, classId?: any, markType?: number) { return await get(`/school/recordReport/listRecord`, { recordId, - titleId, + classId, markType, }) } diff --git a/playground/vite.config.mts b/playground/vite.config.mts index 74dccde..45c9570 100644 --- a/playground/vite.config.mts +++ b/playground/vite.config.mts @@ -33,8 +33,8 @@ export default defineConfig(async () => { open: true, proxy: { '/api': { - target: 'http://43.136.52.196:9053', - // target: 'https://tiku.lingxixue.com', + // target: 'http://43.136.52.196:9053', + target: 'https://tiku.lingxixue.com', changeOrigin: true, }, },