zhgdyun/src/components/closePage.vue

58 lines
1.6 KiB
Vue
Raw Normal View History

2022-06-08 14:51:11 +08:00
<template>
2022-07-06 18:05:01 +08:00
<el-tooltip class="closeBtn" effect="dark" content="关闭页面" placement="bottom">
<!-- <a href="javascript:window.opener=null;window.close();">
2022-06-08 14:51:11 +08:00
<img src="@/assets/images/carOverview/close.png" alt="">
</a> -->
2022-07-06 18:05:01 +08:00
<a @click="closePage">
<img style="width: 100%" src="../assets/images/dataBoard/blueTheme2/close.png" alt="" v-if="enabledProjectV2==4">
<img style="width: 100%" src="@/assets/images/carOverview/close.png" alt="" v-else>
</a>
</el-tooltip>
2022-06-08 14:51:11 +08:00
</template>
2022-07-06 18:05:01 +08:00
2022-06-08 14:51:11 +08:00
<script>
export default {
2022-07-06 18:05:01 +08:00
data() {
return {
enabledProjectV2: 2
2022-06-08 14:51:11 +08:00
}
2022-07-06 18:05:01 +08:00
},
methods: {
closePage() {
// this.$router.back()
// console.log(this.$route.path)
// getDockingUrlApi().then((res)=>{
// console.log('路径',res)
// })
if (this.$route.path.indexOf('/project/dataBoard') != -1 || this.$route.path.indexOf('/project/videoOverview') != -1 || this.$route.path.indexOf('/project/environmentalOverview') != -1 || this.$route.path.indexOf('/project/projectSummary') != -1 || this.$route.path.indexOf('/project/imgRanging') != -1 || this.$route.path.indexOf('/project/warningManage') != -1) {
console.log(window.location.href.split('#/')[0] + '#/projectIndex')
window.location.href = window.location.href.split('#/')[0] + '#/projectIndex' //注释
} else {
window.history.back()
}
}
},
mounted() {
this.enabledProjectV2 = enabledProjectV2;
}
2022-06-08 14:51:11 +08:00
}
</script>
2022-07-06 18:05:01 +08:00
2022-06-08 14:51:11 +08:00
<style scoped>
2022-07-06 18:05:01 +08:00
.closeBtn {
width: 16px;
height: 16px;
position: absolute;
right: 6px;
top: 6px;
z-index: 9999;
cursor: pointer;
}
a {
outline: none;
}
</style>