...
|
...
|
@@ -142,6 +142,7 @@ export default { |
|
|
left: this.optionsStyle.left + "px",
|
|
|
top: this.optionsStyle.top + "px",
|
|
|
background: this.optionsSetup.background,
|
|
|
cursor:this.optionsSetup.isNextPage?'pointer':''
|
|
|
};
|
|
|
},
|
|
|
flexStyle(){
|
...
|
...
|
@@ -415,20 +416,20 @@ export default { |
|
|
},
|
|
|
goJump(){
|
|
|
let locationUrl=this.$route.query;
|
|
|
console.log("reportCode",locationUrl.second_router)
|
|
|
//二级路由传递给iframe父页面
|
|
|
/*let param={
|
|
|
type:'second_router',
|
|
|
data:{
|
|
|
reportCode: this.$route.query.second_router
|
|
|
if(this.optionsSetup.isNextPage){
|
|
|
let nextRouter=this.optionsSetup.nextRouter;
|
|
|
if( this.$route.query.second_router){
|
|
|
nextRouter=this.$route.query.second_router
|
|
|
}
|
|
|
if(nextRouter){
|
|
|
this.$router.push({
|
|
|
path: `/bigscreen/viewer`,
|
|
|
query: { reportCode: nextRouter },
|
|
|
})
|
|
|
}
|
|
|
|
|
|
}
|
|
|
window.parent.postMessage(param, '*')
|
|
|
*/
|
|
|
this.$router.push({
|
|
|
path: `/bigscreen/viewer`,
|
|
|
query: { reportCode: this.$route.query.second_router },
|
|
|
})
|
|
|
|
|
|
}
|
|
|
}
|
|
|
};
|
...
|
...
|
|