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