You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
640 B

import store from '@/store'
import {isEmpty} from "@/util/index"
//判断路由是否需要鉴权,需要则返回true
export function needAuth(route) {
if (route.path.startsWith('/redirect')) return false
const {meta} = route
return !meta || !meta.noAuth || !isEmpty(meta.title, meta.dynamicTitle)
}
//接口权限判断,有权限则返回true
export function auth(path) {
if (store.state.user.admin === true) return true
const resourceMap = store.state.resource.resourceMap
if (!(path in resourceMap)) return true
const resources = store.state.user.resources
return resources && path in resources
}