修改默认展示判定逻辑
This commit is contained in:
parent
7cab923fa4
commit
944d94a202
|
@ -253,10 +253,11 @@ const getAllSubject = async () => {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
bookList.value = dataList
|
bookList.value = dataList
|
||||||
const { id, rootid } = sessionStore.get('subject.curNode')
|
const session = sessionStore.get('subject.curNode')
|
||||||
if(id && rootid){
|
console.log('session',session);
|
||||||
const idx = dataList.findIndex(item => item.id === id && item.rootid === rootid)
|
let filePath = import.meta.env.VITE_APP_RES_FILE_PATH;
|
||||||
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){
|
if(idx > -1){
|
||||||
bookInfo.value = {...dataList[idx]}
|
bookInfo.value = {...dataList[idx]}
|
||||||
filePath += dataList[idx].fileurl.replace('.txt','.pdf')
|
filePath += dataList[idx].fileurl.replace('.txt','.pdf')
|
||||||
|
@ -265,9 +266,10 @@ const getAllSubject = async () => {
|
||||||
filePath += dataList[0].fileurl.replace('.txt','.pdf')
|
filePath += dataList[0].fileurl.replace('.txt','.pdf')
|
||||||
}
|
}
|
||||||
await loadPdfAnimation(filePath)
|
await loadPdfAnimation(filePath)
|
||||||
|
}else{
|
||||||
|
bookInfo.value = {...dataList[0]}
|
||||||
|
filePath += dataList[0].fileurl.replace('.txt','.pdf')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
const bookChange = async (item, idx) => {
|
const bookChange = async (item, idx) => {
|
||||||
booksel.value = idx
|
booksel.value = idx
|
||||||
|
|
Loading…
Reference in New Issue