|
@@ -172,6 +172,10 @@
|
|
|
floorId:this.$route.query.floorId,
|
|
|
subId:this.$route.query.subId,
|
|
|
})
|
|
|
+ }else if(this.$route.query.type == 'big'){
|
|
|
+ this.$set(this,'outButtonData',{
|
|
|
+ type:true,
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
mounted(){
|
|
@@ -186,14 +190,18 @@
|
|
|
});
|
|
|
},
|
|
|
outButton(){
|
|
|
- this.$router.push({
|
|
|
- path: "/emergencyManagement/newPerformEvacuation",
|
|
|
- query: {
|
|
|
- buildId: this.outButtonData.buildId,
|
|
|
- floorId:this.outButtonData.floorId,
|
|
|
- subId:this.outButtonData.subId,
|
|
|
- }
|
|
|
- })
|
|
|
+ if(this.$route.query.type == 'out'){
|
|
|
+ this.$router.push({
|
|
|
+ path: "/emergencyManagement/newPerformEvacuation",
|
|
|
+ query: {
|
|
|
+ buildId: this.outButtonData.buildId,
|
|
|
+ floorId:this.outButtonData.floorId,
|
|
|
+ subId:this.outButtonData.subId,
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }else if(this.$route.query.type == 'big'){
|
|
|
+ window.location.href = (localStorage.getItem('screenUrl') + '?identity=' + localStorage.getItem('identity'));
|
|
|
+ }
|
|
|
},
|
|
|
goPage(type){
|
|
|
if(type != this.pageType){
|