forked from flipped-aurora/gin-vue-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
QM303176530
committed
Jul 26, 2020
1 parent
8560f2f
commit c5b1f27
Showing
2 changed files
with
45 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// 权限按钮展示指令 | ||
import { store } from '@/store/index' | ||
const userInfo = store.getters['user/userInfo'] | ||
export const auth = (Vue) => { | ||
Vue.directive('auth', { | ||
// 当被绑定的元素插入到 DOM 中时…… | ||
bind: function (el, binding) { | ||
let type = "" | ||
switch (Object.prototype.toString.call(binding.value)) { | ||
case "[object Array]": | ||
type = "Array" | ||
break; | ||
case "[object String]": | ||
type = "String" | ||
break; | ||
case "[object Number]": | ||
type = "Number" | ||
break; | ||
default: | ||
type = "" | ||
break; | ||
} | ||
if (type === "") { | ||
/* eslint-disable */ | ||
console.error("v-auth必须是Array,Number,String属性,暂不支持其他属性") | ||
/* eslint-enable */ | ||
return | ||
} | ||
const waitUse = binding.value.toString().split(",") | ||
|
||
let flag = waitUse.some(item=>item==userInfo.authorityId) | ||
if (binding.modifiers.not) { | ||
flag = !flag | ||
} | ||
if(!flag){ | ||
el.style.display = 'none' | ||
} | ||
} | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters