added ESlint 语法检测
This commit is contained in:
@@ -1,83 +1,82 @@
|
||||
import { asyncRouterHandle } from '@/utils/asyncRouter';
|
||||
import { asyncRouterHandle } from '@/utils/asyncRouter'
|
||||
|
||||
import { asyncMenu } from '@/api/menu'
|
||||
|
||||
const routerList = []
|
||||
const formatRouter = (routes) => {
|
||||
routes && routes.map(item => {
|
||||
if ((!item.children || item.children.every(ch => ch.hidden)) && item.name != '404') {
|
||||
routerList.push({ label: item.meta.title, value: item.name })
|
||||
}
|
||||
if (item.children && item.children.length > 0) {
|
||||
formatRouter(item.children)
|
||||
}
|
||||
})
|
||||
routes && routes.map(item => {
|
||||
if ((!item.children || item.children.every(ch => ch.hidden)) && item.name !== '404') {
|
||||
routerList.push({ label: item.meta.title, value: item.name })
|
||||
}
|
||||
if (item.children && item.children.length > 0) {
|
||||
formatRouter(item.children)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
export const router = {
|
||||
namespaced: true,
|
||||
state: {
|
||||
asyncRouters: [],
|
||||
routerList: routerList,
|
||||
namespaced: true,
|
||||
state: {
|
||||
asyncRouters: [],
|
||||
routerList: routerList
|
||||
},
|
||||
mutations: {
|
||||
setRouterList(state, routerList) {
|
||||
state.routerList = routerList
|
||||
},
|
||||
mutations: {
|
||||
setRouterList(state, routerList) {
|
||||
state.routerList = routerList
|
||||
},
|
||||
// 设置动态路由
|
||||
setAsyncRouter(state, asyncRouters) {
|
||||
state.asyncRouters = asyncRouters
|
||||
},
|
||||
},
|
||||
actions: {
|
||||
// 从后台获取动态路由
|
||||
async SetAsyncRouter({ commit }) {
|
||||
const baseRouter = [{
|
||||
path: '/layout',
|
||||
name: 'layout',
|
||||
component: "view/layout/index.vue",
|
||||
meta: {
|
||||
title: "底层layout"
|
||||
},
|
||||
children: []
|
||||
}]
|
||||
const asyncRouterRes = await asyncMenu()
|
||||
if(asyncRouterRes.code !=0){
|
||||
return
|
||||
}
|
||||
const asyncRouter = asyncRouterRes.data&&asyncRouterRes.data.menus
|
||||
asyncRouter.push({
|
||||
path: "404",
|
||||
name: "404",
|
||||
hidden: true,
|
||||
meta: {
|
||||
title: "迷路了*。*",
|
||||
},
|
||||
component: 'view/error/index.vue'
|
||||
})
|
||||
formatRouter(asyncRouter)
|
||||
baseRouter[0].children = asyncRouter
|
||||
baseRouter.push({
|
||||
path: '*',
|
||||
redirect: '/layout/404'
|
||||
|
||||
})
|
||||
asyncRouterHandle(baseRouter)
|
||||
commit('setAsyncRouter', baseRouter)
|
||||
commit('setRouterList', routerList)
|
||||
return true
|
||||
}
|
||||
},
|
||||
getters: {
|
||||
// 获取动态路由
|
||||
asyncRouters(state) {
|
||||
return state.asyncRouters
|
||||
},
|
||||
routerList(state) {
|
||||
return state.routerList
|
||||
},
|
||||
defaultRouter(state) {
|
||||
return state.defaultRouter
|
||||
}
|
||||
// 设置动态路由
|
||||
setAsyncRouter(state, asyncRouters) {
|
||||
state.asyncRouters = asyncRouters
|
||||
}
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
// 从后台获取动态路由
|
||||
async SetAsyncRouter({ commit }) {
|
||||
const baseRouter = [{
|
||||
path: '/layout',
|
||||
name: 'layout',
|
||||
component: 'view/layout/index.vue',
|
||||
meta: {
|
||||
title: '底层layout'
|
||||
},
|
||||
children: []
|
||||
}]
|
||||
const asyncRouterRes = await asyncMenu()
|
||||
if (asyncRouterRes.code !== 0) {
|
||||
return
|
||||
}
|
||||
const asyncRouter = asyncRouterRes.data && asyncRouterRes.data.menus
|
||||
asyncRouter.push({
|
||||
path: '404',
|
||||
name: '404',
|
||||
hidden: true,
|
||||
meta: {
|
||||
title: '迷路了*。*'
|
||||
},
|
||||
component: 'view/error/index.vue'
|
||||
})
|
||||
formatRouter(asyncRouter)
|
||||
baseRouter[0].children = asyncRouter
|
||||
baseRouter.push({
|
||||
path: '*',
|
||||
redirect: '/layout/404'
|
||||
})
|
||||
asyncRouterHandle(baseRouter)
|
||||
commit('setAsyncRouter', baseRouter)
|
||||
commit('setRouterList', routerList)
|
||||
return true
|
||||
}
|
||||
},
|
||||
getters: {
|
||||
// 获取动态路由
|
||||
asyncRouters(state) {
|
||||
return state.asyncRouters
|
||||
},
|
||||
routerList(state) {
|
||||
return state.routerList
|
||||
},
|
||||
defaultRouter(state) {
|
||||
return state.defaultRouter
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user