【新增】 出题页面PPTX

This commit is contained in:
DESKTOP-932OMT8\REN
2025-05-29 15:39:50 +08:00
committed by 陆光LG
parent f1477b8671
commit 43f566205c
7 changed files with 778 additions and 10 deletions

View File

@@ -40,3 +40,16 @@ export const updatePptx = async (params: PptxVO) => {
export const deletePptx = async (id: number) => {
return await request.delete({ url: '/wps/pptx/delete?id=' + id })
}
// 获取Word考点大类
export const getPptxInfo = async (path: String) => {
return await request.get({ url: '/tool/wps/runWpsPptx?path=' + path })
}
// 查询Word节点列表(小类)
export const getPptxInfos = async (params: any) => {
return await request.get({ url: '/wps/pptx/listInfo', params })
}
// 获取Pptx考点
export const getPptxListInfos = async (data: any) => {
return await request.post({ url: '/tool/wps/runWpsPptxInfo' , data })
}