【新增】ps出题页面

This commit is contained in:
YOHO\20373
2025-07-01 17:13:02 +08:00
parent a44730bc8f
commit 6ffbad7bee
5 changed files with 1258 additions and 7 deletions

View File

@@ -158,3 +158,16 @@ export const saveSelectedKaodian = (data) => {
export const getFilePoint = (data) => {
return request.post({ url: `/exam/getPoints/get_filePoint`,data })
}
export const getPsPoint = (data) => {
return request.post({ url: `/exam/getPoints/get_ps_point`,data })
}
export const setPsPoint = (data) => {
return request.post({ url: `/exam/getPoints/set_ps_point`,data })
}
export const getPsPointByQuId = (id) => {
return request.get({ url: `/exam/getPoints/getPsPointById/${id}` })
}