【新增】三个操作题出题、考点页面

This commit is contained in:
YOHO\20373
2025-05-25 00:29:06 +08:00
committed by 陆光LG
parent a9bb47c443
commit 71041b787b
5 changed files with 1746 additions and 404 deletions

View File

@@ -111,3 +111,23 @@ export const noauditQue = (ids: string[]) => {
export const importQueTemplate = () => {
return request.download({ url: '/exam/question/get-import-template' })
}
//查询得到考点
export const getListByQuId = (id) => {
return request.get({ url: `/exam/getPoints/get_Point_id/${id}` })
}
export const getMysqlPoint = (data) => {
return request.post({ url: `/exam/getPoints/get_mysql_point`,data })
}
//设置mysql考点
export const saveSelectedKaodian = (data) => {
return request.post({ url: `/exam/getPoints/update_mysql_point`,data })
}
//设置浏览器考点
export const setBrowserPoint = (data) => {
return request.post({ url: `/exam/getPoints/set_browser_point`,data })
}
export const getFilePoint = (data) => {
return request.post({ url: `/exam/getPoints/get_filePoint`,data })
}