Commit 9172ed9a authored by renjintao's avatar renjintao

product

parent 237b0050
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
</Header> </Header>
<div class="i-tabs"> <div class="i-tabs">
<transition name="fade-quick"> <transition name="fade-quick">
<i-tabs v-show="showHeader" @on-reload="handleReload" /> <i-tabs v-show="showHeader" @on-reload="handleReload" />
</transition> </transition>
</div> </div>
<Content class="i-layout-content"> <Content class="i-layout-content">
...@@ -312,7 +312,11 @@ export default { ...@@ -312,7 +312,11 @@ export default {
}); });
}, },
goPage(u, li) { goPage(u, li) {
this.$router.push(li.path); if (li.target == 1) {
window.open(li.path, "_blank");
} else {
this.$router.push(li.path);
}
this.isActive = li.id; this.isActive = li.id;
this.homeMenu = u.title; this.homeMenu = u.title;
this.homeMenuItem = li.title; this.homeMenuItem = li.title;
......
...@@ -97,7 +97,7 @@ export default { ...@@ -97,7 +97,7 @@ export default {
datas.path = datas.url; datas.path = datas.url;
let name = datas.url.replace(/\//g, "-"); let name = datas.url.replace(/\//g, "-");
datas.header = "home"; datas.header = "home";
delete datas.target; // delete datas.target;
if (name.substr(0, 1) == "-") { if (name.substr(0, 1) == "-") {
name = name.substr(1); name = name.substr(1);
} }
......
...@@ -20,6 +20,7 @@ function filterMenu (menuList, access, lastList) { ...@@ -20,6 +20,7 @@ function filterMenu (menuList, access, lastList) {
menu.children && filterMenu(menu.children, access, newMenu.children); menu.children && filterMenu(menu.children, access, newMenu.children);
} }
}); });
return lastList; return lastList;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment