【新增】题型判分规则

This commit is contained in:
YOHO\20373
2025-05-18 00:01:29 +08:00
committed by 陆光LG
parent ad22af796d
commit 7c353b4e08
12 changed files with 106 additions and 10 deletions

View File

@@ -41,3 +41,10 @@ export const updateSpecialty = async (params: any) => {
export const deleteSpecialty = async (id: number) => {
return await request.delete({ url: '/exam/specialty/' + id })
}
export const getSpecialtyRole = async (id: number) => {
return await request.get({ url: '/exam/specialty/getRole/' + id })
}
export const setSpecialtyRole = async (data) => {
return await request.post({ url: '/exam/specialty/setRole', data:data })
}