审查视图

src/utils/permission.js 658 字节
朱兆平 authored
1 2 3 4 5 6 7 8
import store from '@/store'

/**
 * @param {Array} value
 * @returns {Boolean}
 * @example see @/views/permission/directive.vue
 */
export default function checkPermission(value) {
9 10 11
    if (value && value instanceof Array && value.length > 0) {
        const roles = store.getters && store.getters.roles
        const permissionRoles = value
朱兆平 authored
12
13 14 15
        const hasPermission = roles.some(role => {
            return permissionRoles.includes(role)
        })
朱兆平 authored
16
17 18 19 20 21 22 23
        if (!hasPermission) {
            return false
        }
        return true
    } else {
        console.error(`need roles! Like v-permission="['admin','editor']"`)
        return false
朱兆平 authored
24 25
    }
}