diff --git a/src/pages/list/QueryList.vue b/src/pages/list/QueryList.vue
index 123aca1..bad8046 100644
--- a/src/pages/list/QueryList.vue
+++ b/src/pages/list/QueryList.vue
@@ -103,8 +103,19 @@
{{text}}
-
-
{{index}}
+
@@ -173,7 +184,14 @@ export default {
selectedRows: []
}
},
+ authorize: {
+ deleteRecord: 'delete'
+ },
methods: {
+ deleteRecord(key) {
+ this.dataSource = this.dataSource.filter(item => item.key !== key)
+ this.selectedRows = this.selectedRows.filter(item => item.key !== key)
+ },
toggleAdvanced () {
this.advanced = !this.advanced
},
diff --git a/src/plugins/authority-plugin.js b/src/plugins/authority-plugin.js
index 64fe185..860b1d5 100644
--- a/src/plugins/authority-plugin.js
+++ b/src/plugins/authority-plugin.js
@@ -48,6 +48,7 @@ const auth = function(authConfig, permission, role, permissions, roles) {
* @returns {boolean}
*/
const preventClick = function (event) {
+ event.preventDefault()
event.stopPropagation()
return false
}
@@ -55,7 +56,7 @@ const preventClick = function (event) {
const checkInject = function (el, binding,vnode) {
const type = binding.arg
const check = binding.value
- const instance = vnode.componentInstance
+ const instance = vnode.context
const $auth = instance.$auth
if (!$auth || !$auth(check, type)) {
el.classList.add('disabled')
diff --git a/src/theme/default/style.less b/src/theme/default/style.less
index 3c05a8c..c722172 100644
--- a/src/theme/default/style.less
+++ b/src/theme/default/style.less
@@ -28,5 +28,5 @@
}
.disabled{
cursor: not-allowed;
- opacity: 0.4;
+ color: @disabled-color;
}