35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
import store from '@/store'
|
||
|
||
/**
|
||
* @param {Array} value
|
||
* @returns {Boolean}
|
||
* @example see @/views/permission/directive.vue
|
||
*/
|
||
export default function checkPermission(value) {
|
||
if (value && value instanceof Array && value.length > 0) {
|
||
const roles = store.getters && store.getters.roles
|
||
const permissionRoles = value
|
||
|
||
const hasPermission = roles.some(role => {
|
||
return permissionRoles.includes(role)
|
||
})
|
||
|
||
if (!hasPermission) {
|
||
return false
|
||
}
|
||
return true
|
||
} else {
|
||
console.error(`need roles! Like v-permission="['admin','editor']"`)
|
||
return false
|
||
}
|
||
}
|