no message

Former-commit-id: 5a98ab9fad1cd3487d5975a13be18e7e974ac943 [formerly 5a98ab9fad1cd3487d5975a13be18e7e974ac943 [formerly 5a98ab9fad1cd3487d5975a13be18e7e974ac943 [formerly 5a98ab9fad1cd3487d5975a13be18e7e974ac943 [formerly 435c4d936c2f8ab5eea278e4432a0df286286f01 [formerly f87cff38d27cea83e7a7fd974aff47bac7801bc7]]]]]
Former-commit-id: 848af72c6b5e06521da331a7d35c2ef802d17a22
Former-commit-id: ae82c772d169467c14849964521f203c819bc4cf
Former-commit-id: 75e0c51e1a5a1720a40d48b2319f69fa0dcd9dfd [formerly 8732955133a2a8df5b4c4ed780161a27b8468dc8]
Former-commit-id: e0404cd785b26d49dd4309fa182d921679401c17
Former-commit-id: 8073756eb1b1431acc4f31798822e453304d6545
Former-commit-id: 4c642306a6aaa3daf3f6cafaaae40129e879e6d4
Former-commit-id: e18a58a22d64f6ec527909074a193716f163489b
Former-commit-id: 9b9eeb009de56ee3405ac4be0eed2551f1ed06d8
This commit is contained in:
liyang
2018-06-30 19:29:01 +08:00
parent 5b1efcf164
commit 27ab18faa0
5 changed files with 27 additions and 6 deletions

View File

@@ -92,19 +92,24 @@ new Vue({
* 处理路由 得到每一级的路由设置
*/
getAllTagFromRoutes () {
// 所有加载在主框架内的页面
const tagPool = []
// 所有需要被缓存的页面组件 name
const pageUseCacheList = []
const push = function (routes) {
routes.forEach(route => {
if (route.children) {
push(route.children)
} else {
console.log('alive', route.meta.alive)
tagPool.push(route)
}
})
}
push(frameInRoutes)
this.$store.commit('d2admintagPoolSet', tagPool)
// d2adminPageUseCacheList
console.log('tagPool', tagPool)
this.$store.commit('d2adminTagPoolSet', tagPool)
this.$store.commit('d2adminPageUseCacheListSet', pageUseCacheList)
}
}
})