forked from guyan0319/go-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
qiang
committed
Jan 3, 2020
1 parent
4d03fd0
commit 65c65ee
Showing
17 changed files
with
798 additions
and
129 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
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
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
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
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
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
32 changes: 32 additions & 0 deletions
32
vue-element-admin/src/views/system/role/components/SwitchRoles.vue
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,32 @@ | ||
<template> | ||
<div> | ||
<div style="margin-bottom:15px;"> | ||
{{ $t('permission.roles') }}: {{ roles }} | ||
</div> | ||
{{ $t('permission.switchRoles') }}: | ||
<el-radio-group v-model="switchRoles"> | ||
<el-radio-button label="editor" /> | ||
<el-radio-button label="admin" /> | ||
</el-radio-group> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
computed: { | ||
roles() { | ||
return this.$store.getters.roles | ||
}, | ||
switchRoles: { | ||
get() { | ||
return this.roles[0] | ||
}, | ||
set(val) { | ||
this.$store.dispatch('user/changeRoles', val).then(() => { | ||
this.$emit('change') | ||
}) | ||
} | ||
} | ||
} | ||
} | ||
</script> |
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,111 @@ | ||
<template> | ||
<div class="app-container"> | ||
<switch-roles @change="handleRolesChange" /> | ||
<div :key="key" style="margin-top:30px;"> | ||
<div> | ||
<span v-permission="['admin']" class="permission-alert"> | ||
Only | ||
<el-tag class="permission-tag" size="small">admin</el-tag> can see this | ||
</span> | ||
<el-tag v-permission="['admin']" class="permission-sourceCode" type="info"> | ||
v-permission="['admin']" | ||
</el-tag> | ||
</div> | ||
|
||
<div> | ||
<span v-permission="['editor']" class="permission-alert"> | ||
Only | ||
<el-tag class="permission-tag" size="small">editor</el-tag> can see this | ||
</span> | ||
<el-tag v-permission="['editor']" class="permission-sourceCode" type="info"> | ||
v-permission="['editor']" | ||
</el-tag> | ||
</div> | ||
|
||
<div> | ||
<span v-permission="['admin','editor']" class="permission-alert"> | ||
Both | ||
<el-tag class="permission-tag" size="small">admin</el-tag> and | ||
<el-tag class="permission-tag" size="small">editor</el-tag> can see this | ||
</span> | ||
<el-tag v-permission="['admin','editor']" class="permission-sourceCode" type="info"> | ||
v-permission="['admin','editor']" | ||
</el-tag> | ||
</div> | ||
</div> | ||
|
||
<div :key="'checkPermission'+key" style="margin-top:60px;"> | ||
<aside> | ||
{{ $t('permission.tips') }} | ||
<br> e.g. | ||
</aside> | ||
|
||
<el-tabs type="border-card" style="width:550px;"> | ||
<el-tab-pane v-if="checkPermission(['admin'])" label="Admin"> | ||
Admin can see this | ||
<el-tag class="permission-sourceCode" type="info"> | ||
v-if="checkPermission(['admin'])" | ||
</el-tag> | ||
</el-tab-pane> | ||
|
||
<el-tab-pane v-if="checkPermission(['editor'])" label="Editor"> | ||
Editor can see this | ||
<el-tag class="permission-sourceCode" type="info"> | ||
v-if="checkPermission(['editor'])" | ||
</el-tag> | ||
</el-tab-pane> | ||
|
||
<el-tab-pane v-if="checkPermission(['admin','editor'])" label="Admin-OR-Editor"> | ||
Both admin or editor can see this | ||
<el-tag class="permission-sourceCode" type="info"> | ||
v-if="checkPermission(['admin','editor'])" | ||
</el-tag> | ||
</el-tab-pane> | ||
</el-tabs> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import permission from '@/directive/permission/index.js' // 权限判断指令 | ||
import checkPermission from '@/utils/permission' // 权限判断函数 | ||
import SwitchRoles from './components/SwitchRoles' | ||
export default { | ||
name: 'DirectivePermission', | ||
components: { SwitchRoles }, | ||
directives: { permission }, | ||
data() { | ||
return { | ||
key: 1 // 为了能每次切换权限的时候重新初始化指令 | ||
} | ||
}, | ||
methods: { | ||
checkPermission, | ||
handleRolesChange() { | ||
this.key++ | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.app-container { | ||
/deep/ .permission-alert { | ||
width: 320px; | ||
margin-top: 15px; | ||
background-color: #f0f9eb; | ||
color: #67c23a; | ||
padding: 8px 16px; | ||
border-radius: 4px; | ||
display: inline-block; | ||
} | ||
/deep/ .permission-sourceCode { | ||
margin-left: 15px; | ||
} | ||
/deep/ .permission-tag { | ||
background-color: #ecf5ff; | ||
} | ||
} | ||
</style> | ||
|
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,19 @@ | ||
<template> | ||
<div class="app-container"> | ||
<switch-roles @change="handleRolesChange" /> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import SwitchRoles from './components/SwitchRoles' | ||
export default { | ||
name: 'PagePermission', | ||
components: { SwitchRoles }, | ||
methods: { | ||
handleRolesChange() { | ||
this.$router.push({ path: '/permission/index?' + +new Date() }) | ||
} | ||
} | ||
} | ||
</script> |
Oops, something went wrong.