|
@@ -830,6 +830,10 @@ export default {
|
|
|
publish:`/pptpublish?id=${PptId}`,
|
|
|
present:`/pptpresent?id=${PptId}`
|
|
|
}
|
|
|
+
|
|
|
+ let { href } = this.$router.resolve({
|
|
|
+ path: urlMap[item.key]
|
|
|
+ })
|
|
|
if(item.key==='edit'){
|
|
|
//判断能否编辑
|
|
|
const editRes=await pptInterface.pptEditLock({PptId:Number(PptId),Status:0})
|
|
@@ -844,7 +848,7 @@ export default {
|
|
|
if(res.Ret!==200) return
|
|
|
}
|
|
|
if(urlMap[item.key]){
|
|
|
- window.open(urlMap[item.key],'_blank')
|
|
|
+ window.open(href,'_blank')
|
|
|
return
|
|
|
}
|
|
|
const handleCommand = {
|