|
|
@@ -19,11 +19,11 @@
|
|
|
<p>{{item.systemmodulename}}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="nav-bottom-item">
|
|
|
+ <!-- <div class="nav-bottom-item">
|
|
|
<div class="item">
|
|
|
<img width="30" src="../../assets/nav_icon/more.svg" alt="">
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
<el-container>
|
|
|
<socket-message></socket-message>
|
|
|
@@ -105,7 +105,13 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
this.$store.dispatch('setUsershortcuts')
|
|
|
- this.$router.go(-1)
|
|
|
+
|
|
|
+ // 若当前删除模块为激活红的模块则返回首页
|
|
|
+ let systemmodulename = JSON.parse(sessionStorage.getItem('active_modules')).systemmodulename
|
|
|
+ if (item.systemmodulename === systemmodulename) {
|
|
|
+ this.$router.replace({path:'/home'})
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
created () {
|
|
|
@@ -146,6 +152,9 @@ export default {
|
|
|
background: #f1f2f3;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
+.nav-top-item{
|
|
|
+ overflow: scroll;
|
|
|
+}
|
|
|
.item{
|
|
|
position: relative;
|
|
|
width: 40px;
|