add v-permission
parent
a73dc0f934
commit
2795564fd5
@ -1,14 +1,10 @@
|
|||||||
import store from '@/store'
|
import { hasPermission } from '@/utils/auth'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
inserted(el, binding, vnode) {
|
inserted(el, binding, vnode) {
|
||||||
const { value } = binding // v-permission 绑定的权限值
|
const { value } = binding // v-permission 绑定的权限值
|
||||||
const auths = store.getters && store.getters.authorities // 拥有的权限列表
|
var checkFlag = hasPermission(value)
|
||||||
if (value) {
|
if(checkFlag == false && el.parentNode ){
|
||||||
//auths.indexOf(value) === -1 && el.parentNode && el.parentNode.removeChild(el)
|
el.parentNode.removeChild(el)
|
||||||
} else {
|
|
||||||
// 未绑定权限值或者绑定的权限值为 假
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue