qinqing_dev #336

Merged
qinqing merged 3 commits from qinqing_dev into main 2024-10-19 16:31:47 +08:00
1 changed files with 8 additions and 6 deletions
Showing only changes of commit d68e4fef0b - Show all commits

View File

@ -253,10 +253,11 @@ const getAllSubject = async () => {
}
})
bookList.value = dataList
const { id, rootid } = sessionStore.get('subject.curNode')
if(id && rootid){
const idx = dataList.findIndex(item => item.id === id && item.rootid === rootid)
let filePath = import.meta.env.VITE_APP_RES_FILE_PATH;
const session = sessionStore.get('subject.curNode')
console.log('session',session);
let filePath = import.meta.env.VITE_APP_RES_FILE_PATH;
if(session.rootid){
const idx = dataList.findIndex(item => item.id === session.rootid)
if(idx > -1){
bookInfo.value = {...dataList[idx]}
filePath += dataList[idx].fileurl.replace('.txt','.pdf')
@ -265,9 +266,10 @@ const getAllSubject = async () => {
filePath += dataList[0].fileurl.replace('.txt','.pdf')
}
await loadPdfAnimation(filePath)
}else{
bookInfo.value = {...dataList[0]}
filePath += dataList[0].fileurl.replace('.txt','.pdf')
}
}
const bookChange = async (item, idx) => {
booksel.value = idx