【新增】 PPTX出题的时候带上'第几页'标签

This commit is contained in:
dlaren
2025-09-01 17:04:17 +08:00
parent e7d8ec8470
commit 92d7b2474c

View File

@@ -508,7 +508,7 @@ const handleNodelClick = async (row: any) => {
return return
} }
// 获取名称 // 获取名称
chineseName.value = '【' + row.name + '】' chineseName.value = '【' + row.belongTo +'】【' + row.name + '】'
textIndex.value = row.index textIndex.value = row.index
const res = await PptxApi.getSlideByNameList(row.type) const res = await PptxApi.getSlideByNameList(row.type)
pptxPointsInfoList.value = [] pptxPointsInfoList.value = []
@@ -638,7 +638,7 @@ const deleteUrl = (index: number) => {
const handleUploadSuccess = ({ url, fileType }) => { const handleUploadSuccess = ({ url, fileType }) => {
const index = documentList.value.findIndex((item) => item.fileType === fileType) const index = documentList.value.findIndex((item) => item.fileType === fileType)
if (index !== -1) { if (index !== -1) {
documentList.value[index].url = url documentList.value[index].url = url1
} }
} }
/** 打开弹窗 */ /** 打开弹窗 */