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, }, },