feat:更新考试记录功能

This commit is contained in:
2026-08-03 22:43:32 +08:00
parent 7ae51438f4
commit 69a5ab4851
8 changed files with 75 additions and 22 deletions

9
src/apis/exam.ts Normal file
View File

@@ -0,0 +1,9 @@
import { cloudService } from './index'
import type { IExamRecord } from '@/types/exam.ts'
export const addExamRecordApi = (data: IExamRecord): Promise<boolean> =>
cloudService({
url: '/study-api/exam/record',
method: 'post',
data
})