74 lines
2.2 KiB
Vue
74 lines
2.2 KiB
Vue
<template>
|
|
<el-tooltip class="closeBtn" effect="dark" content="关闭页面" placement="bottom">
|
|
<!-- <a href="javascript:window.opener=null;window.close();">
|
|
<img src="@/assets/images/carOverview/close.png" alt="">
|
|
</a> -->
|
|
<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>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
enabledProjectV2: 2,
|
|
styleType:""
|
|
}
|
|
},
|
|
created(){
|
|
this.styleType = this.$store.state.userInfo.styleType
|
|
console.log('this.styleType',this.styleType)
|
|
},
|
|
methods: {
|
|
|
|
closePage() {
|
|
console.log('点击关闭',this.$store.state.userInfo.styleType);
|
|
// this.$router.back()
|
|
// console.log(this.$route.path)
|
|
// getDockingUrlApi().then((res)=>{
|
|
// console.log('路径',res)
|
|
// })
|
|
|
|
if ( this.styleType != 3 && this.$route.path.indexOf('/project/dataBoard') != -1 ||
|
|
this.$route.path.indexOf('/project/videoOverview') != -1 || this.$route.path.indexOf('/project/replayVideo') != -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 if (this.styleType == 3){
|
|
this.$router.push({ path:'/projectV3/taskList' })
|
|
}else if(this.$route.path.indexOf('/companyAdmin/heNanBigScreen') != -1 ){
|
|
this.$router.push({ path:'/firm/projectManage' })
|
|
}else {
|
|
console.log('========')
|
|
// window.history.back()
|
|
this.$router.back()
|
|
|
|
}
|
|
}
|
|
},
|
|
mounted() {
|
|
this.enabledProjectV2 = enabledProjectV2;
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.closeBtn {
|
|
width: 16px;
|
|
height: 16px;
|
|
position: absolute;
|
|
right: 6px;
|
|
top: 6px;
|
|
z-index: 9999;
|
|
cursor: pointer;
|
|
}
|
|
|
|
a {
|
|
outline: none;
|
|
}
|
|
</style>
|