zhangjie 3 tháng trước cách đây
mục cha
commit
1196a8fbcd
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/api/markPage.ts

+ 2 - 2
src/api/markPage.ts

@@ -34,7 +34,7 @@ export async function getSetting() {
 /** 获取评卷状态 */
 export async function getStatus(
   questionModel: Setting["questionModel"],
-  quesionId?: string
+  questionId?: string
 ) {
   return httpApp.post<MarkStore["status"]>(
     "/api/mark/getStatus",
@@ -43,7 +43,7 @@ export async function getStatus(
       params: {
         ...getMarkInfo(),
         questionModel,
-        quesionId: quesionId || undefined,
+        questionId: questionId || undefined,
       },
     }
   );