fix: the problem that v-auth directive doesn't take effect in native html element; 🐛

修复:v-auth 指令在原生 HTML 元素上不生效的 bug;
This commit is contained in:
iczer 2020-08-04 19:43:48 +08:00
parent f32fa56ba7
commit 64589950e5
3 changed files with 23 additions and 4 deletions

View File

@ -103,8 +103,19 @@
<div slot="description" slot-scope="{text}"> <div slot="description" slot-scope="{text}">
{{text}} {{text}}
</div> </div>
<div slot="action" slot-scope="{text, record, index}"> <div slot="action" slot-scope="{text, record}">
<a-icon type="edit" />{{index}} <a style="margin-right: 8px">
<a-icon type="plus"/>新增
</a>
<a style="margin-right: 8px">
<a-icon type="edit"/>编辑
</a>
<a @click="deleteRecord(record.key)">
<a-icon type="delete" />删除1
</a>
<a @click.native="deleteRecord(record.key)" v-auth="`delete`">
<a-icon type="delete" />删除2
</a>
</div> </div>
<template slot="statusTitle"> <template slot="statusTitle">
<a-icon @click.native="onStatusTitleClick" type="info-circle" /> <a-icon @click.native="onStatusTitleClick" type="info-circle" />
@ -173,7 +184,14 @@ export default {
selectedRows: [] selectedRows: []
} }
}, },
authorize: {
deleteRecord: 'delete'
},
methods: { methods: {
deleteRecord(key) {
this.dataSource = this.dataSource.filter(item => item.key !== key)
this.selectedRows = this.selectedRows.filter(item => item.key !== key)
},
toggleAdvanced () { toggleAdvanced () {
this.advanced = !this.advanced this.advanced = !this.advanced
}, },

View File

@ -48,6 +48,7 @@ const auth = function(authConfig, permission, role, permissions, roles) {
* @returns {boolean} * @returns {boolean}
*/ */
const preventClick = function (event) { const preventClick = function (event) {
event.preventDefault()
event.stopPropagation() event.stopPropagation()
return false return false
} }
@ -55,7 +56,7 @@ const preventClick = function (event) {
const checkInject = function (el, binding,vnode) { const checkInject = function (el, binding,vnode) {
const type = binding.arg const type = binding.arg
const check = binding.value const check = binding.value
const instance = vnode.componentInstance const instance = vnode.context
const $auth = instance.$auth const $auth = instance.$auth
if (!$auth || !$auth(check, type)) { if (!$auth || !$auth(check, type)) {
el.classList.add('disabled') el.classList.add('disabled')

View File

@ -28,5 +28,5 @@
} }
.disabled{ .disabled{
cursor: not-allowed; cursor: not-allowed;
opacity: 0.4; color: @disabled-color;
} }