|
@@ -93,8 +93,9 @@ function onSelectPlayOpt(e){
|
|
|
const itemH=pptContentHeight.value/conArr.value.length
|
|
|
index=Math.floor(y.value/itemH)
|
|
|
}
|
|
|
+ let routerEl
|
|
|
if(window.location.pathname.startsWith('/ppten')){
|
|
|
- router.push({
|
|
|
+ routerEl=router.resolve({
|
|
|
path:"/ppten/preview",
|
|
|
query:{
|
|
|
id:pptId,
|
|
@@ -102,7 +103,7 @@ function onSelectPlayOpt(e){
|
|
|
}
|
|
|
})
|
|
|
}else{
|
|
|
- router.push({
|
|
|
+ routerEl=router.resolve({
|
|
|
path:"/ppt/preview",
|
|
|
query:{
|
|
|
id:pptId,
|
|
@@ -110,6 +111,7 @@ function onSelectPlayOpt(e){
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
+ window.open(routerEl.href,'_blank')
|
|
|
}
|
|
|
|
|
|
|