change name

This commit is contained in:
Pan 2019-03-15 13:36:32 +08:00
parent 66a08f5203
commit 3ca51f90e4
1 changed files with 11 additions and 11 deletions

View File

@ -33,7 +33,7 @@ export default {
} }
}, },
computed: { computed: {
routers() { routes() {
return this.$store.getters.permission_routes return this.$store.getters.permission_routes
}, },
lang() { lang() {
@ -42,10 +42,10 @@ export default {
}, },
watch: { watch: {
lang() { lang() {
this.searchPool = this.generateRouters(this.routers) this.searchPool = this.generateRoutes(this.routes)
}, },
routers() { routes() {
this.searchPool = this.generateRouters(this.routers) this.searchPool = this.generateRoutes(this.routes)
}, },
searchPool(list) { searchPool(list) {
this.initFuse(list) this.initFuse(list)
@ -59,7 +59,7 @@ export default {
} }
}, },
mounted() { mounted() {
this.searchPool = this.generateRouters(this.routers) this.searchPool = this.generateRoutes(this.routes)
}, },
methods: { methods: {
click() { click() {
@ -100,10 +100,10 @@ export default {
}, },
// Filter out the routes that can be displayed in the sidebar // Filter out the routes that can be displayed in the sidebar
// And generate the internationalized title // And generate the internationalized title
generateRouters(routers, basePath = '/', prefixTitle = []) { generateRoutes(routes, basePath = '/', prefixTitle = []) {
let res = [] let res = []
for (const router of routers) { for (const router of routes) {
// skip hidden router // skip hidden router
if (router.hidden) { continue } if (router.hidden) { continue }
@ -125,11 +125,11 @@ export default {
} }
} }
// recursive child routers // recursive child routes
if (router.children) { if (router.children) {
const tempRouters = this.generateRouters(router.children, data.path, data.title) const tempRoutes = this.generateRoutes(router.children, data.path, data.title)
if (tempRouters.length >= 1) { if (tempRoutes.length >= 1) {
res = [...res, ...tempRouters] res = [...res, ...tempRoutes]
} }
} }
} }