Commit f1865fe5 by liuyong

修改菜单

1 parent 95ade57c
Showing with 6 additions and 5 deletions
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript> </noscript>
<div id="app"></div> <div id="app"></div>
<script src="./api.js"></script> <!-- <script src="./api.js"></script> -->
<!-- <script type="text/javascript" src="http://192.168.0.187:9999/web-apps/apps/api/documents/api.js"></script> --> <!-- <script type="text/javascript" src="http://192.168.0.187:9999/web-apps/apps/api/documents/api.js"></script> -->
<!-- built files will be auto injected --> <!-- built files will be auto injected -->
</body> </body>
......
...@@ -510,16 +510,17 @@ ...@@ -510,16 +510,17 @@
jumpPage(data) { jumpPage(data) {
switch(data){ switch(data){
case '架构元素管理': case '架构元素管理':
this.$router.push({ path: '/main/JiaGouYuanShuGuanLi' }); this.$router.push( '/main/JiaGouYuanShuGuanLi', () => {}, () => {} );
break; break;
case '元模型管理': case '元模型管理':
this.$router.push({ path: '/main/YuanMoXingGuanLi' }); this.$router.push( '/main/YuanMoXingGuanLi', () => {}, () => {} );
break; break;
case '总体架构资产管理': case '总体架构资产管理':
this.$router.push({ path: '/main/YeWuZiChanGuanLi' }); this.$router.push( '/main/YeWuZiChanGuanLi', () => {}, () => {} );
break; break;
case '在线文档编制': case '在线文档编制':
this.$router.push({ path: '/main/wenDangDemo' }); this.$router.push( '/main/wenDangDemo', () => {}, () => {} );
break; break;
} }
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!