Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
FLIPPED-AURORA
gin-vue-admin
提交
e7f9fc07
G
gin-vue-admin
项目概览
FLIPPED-AURORA
/
gin-vue-admin
大约 1 年 前同步成功
通知
345
Star
18155
Fork
5506
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
G
gin-vue-admin
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
e7f9fc07
编写于
7月 28, 2020
作者:
Mr.奇淼(
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'gin-vue-admin_v2_dev' of
https://github.com/piexlmax/QMPlus
into gin-vue-admin_v2_dev
上级
39ff7d1d
83253142
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
45 addition
and
3 deletion
+45
-3
web/src/directive/auth.js
web/src/directive/auth.js
+40
-0
web/src/main.js
web/src/main.js
+5
-3
未找到文件。
web/src/directive/auth.js
0 → 100644
浏览文件 @
e7f9fc07
// 权限按钮展示指令
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
'
}
}
})
}
web/src/main.js
浏览文件 @
e7f9fc07
...
...
@@ -47,6 +47,11 @@ Vue.use(APlayer, {
});
import
{
auth
}
from
'
@/directive/auth
'
// 按钮权限指令
auth
(
Vue
)
new
Vue
({
render
:
h
=>
h
(
App
),
router
,
...
...
@@ -56,6 +61,3 @@ new Vue({
//引入echarts
import
echarts
from
'
echarts
'
Vue
.
prototype
.
$echarts
=
echarts
;
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录