mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改代码
This commit is contained in:
parent
a19305a922
commit
5dec585d4e
@ -19,9 +19,11 @@
|
|||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<layout></layout>
|
<layout></layout>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -29,22 +29,23 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
router.beforeEach(function (to, fr, next) {
|
router.beforeEach(function (to, fr, next) {
|
||||||
console.log(fr.fullPath, '-- to -->', to.fullPath)
|
|
||||||
|
|
||||||
let page = to.fullPath;
|
let page = to.fullPath;
|
||||||
if (to.fullPath === '/') {
|
if (to.fullPath === '/') {
|
||||||
page = './static/template/index.vue';
|
page = './static/template/index.vue';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (router.hasRoute(to.fullPath)) {
|
let name = page.replace(/[.\/]+/g, '_');
|
||||||
|
if (router.hasRoute(name)) {
|
||||||
next();
|
next();
|
||||||
} else {
|
} else {
|
||||||
router.addRoute({name: to.fullPath, path: to.fullPath, component: loadVueFile(page)});
|
router.addRoute({name: name, path: to.fullPath, component: loadVueFile(page)});
|
||||||
next({name: to.fullPath});
|
next({name: name});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
router.afterEach(function (to) {
|
router.afterEach(function (to) {
|
||||||
|
console.log('afterEach', to);
|
||||||
if (router.hasRoute(to.fullPath)) {
|
if (router.hasRoute(to.fullPath)) {
|
||||||
router.removeRoute(to.fullPath)
|
router.removeRoute(to.fullPath)
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ export default {
|
|||||||
name: "index",
|
name: "index",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
userName: "张三32"
|
userName: "张三"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user