潘志宝
3 天以前 221918bba28d2384d03c596a68256d7832e4a0e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import type { App } from 'vue'
import { CACHE_KEY, useCache } from '@/hooks/web/useCache'
 
const { t } = useI18n() // 国际化
 
export function hasPermi(app: App<Element>) {
  app.directive('hasPermi', (el, binding) => {
    const { value } = binding
 
    if (value && value instanceof Array && value.length > 0) {
      const hasPermissions = hasPermission(value)
 
      if (!hasPermissions) {
        el.parentNode && el.parentNode.removeChild(el)
      }
    } else {
      throw new Error(t('permission.hasPermission'))
    }
  })
}
 
export const hasPermission = (permission: string[]) => {
  const { wsCache } = useCache()
  const all_permission = '*:*:*'
  const userInfo = wsCache.get(CACHE_KEY.USER)
  const permissions = userInfo?.permissions || []
 
  return permissions.some((p: string) => {
    return all_permission === p || permission.includes(p)
  })
}