Commit f05ac749 by liuyong

修改菜单

1 parent 71233373
Showing with 5 additions and 2 deletions
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
width="640" width="640"
class="menu_item" class="menu_item"
style="margin-right: 80px;cursor: pointer;position: relative;" style="margin-right: 80px;cursor: pointer;position: relative;"
v-model="visible1"
trigger="hover"> trigger="hover">
<div class="menu_1_container"> <div class="menu_1_container">
<div class="menu_1_item"> <div class="menu_1_item">
...@@ -490,7 +491,7 @@ ...@@ -490,7 +491,7 @@
}, },
data() { data() {
return { return {
visible1: false
}; };
}, },
mounted(){ mounted(){
...@@ -516,13 +517,15 @@ ...@@ -516,13 +517,15 @@
switch(data){ switch(data){
case '架构元素管理': case '架构元素管理':
this.$router.push( '/main/JiaGouYuanShuGuanLi', () => {}, () => {} ); this.$router.push( '/main/JiaGouYuanShuGuanLi', () => {}, () => {} );
this.visible1 = false;
break; break;
case '元模型管理': case '元模型管理':
this.$router.push( '/main/YuanMoXingGuanLi', () => {}, () => {} ); this.$router.push( '/main/YuanMoXingGuanLi', () => {}, () => {} );
this.visible1 = false;
break; break;
case '总体架构资产管理': case '总体架构资产管理':
this.$router.push( '/main/YeWuZiChanGuanLi', () => {}, () => {} ); this.$router.push( '/main/YeWuZiChanGuanLi', () => {}, () => {} );
this.visible1 = false;
break; break;
case '在线文档编制': case '在线文档编制':
this.$router.push( '/main/wenDangDemo', () => {}, () => {} ); this.$router.push( '/main/wenDangDemo', () => {}, () => {} );
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!