|
@@ -4,7 +4,7 @@
|
|
|
<el-col :span="24" class="main">
|
|
|
<el-col :span="24" class="one">
|
|
|
<div class="w_1200">
|
|
|
- <el-col :span="20" class="left">
|
|
|
+ <el-col :span="20" class="left" @click.native="homeBtn">
|
|
|
<el-col :span="3" class="image">
|
|
|
<el-image :src="jszxUrl"></el-image>
|
|
|
</el-col>
|
|
@@ -76,6 +76,9 @@ export default {
|
|
|
isTab(type) {
|
|
|
return this.$route.path.includes(`/${type}`);
|
|
|
},
|
|
|
+ homeBtn() {
|
|
|
+ this.$router.push({ path: '/' });
|
|
|
+ },
|
|
|
},
|
|
|
computed: {
|
|
|
...mapState(['user']),
|
|
@@ -119,6 +122,9 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .left:hover {
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
.right {
|
|
|
text-align: center;
|
|
|
padding: 39px 0;
|