From 7b069ffe261f263cd95910f46b1fc4f2c73b9310 Mon Sep 17 00:00:00 2001 From: junjie Date: Wed, 26 May 2021 14:40:09 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E4=BB=AA=E8=A1=A8=E7=9B=98):=E5=88=86?= =?UTF-8?q?=E4=BA=AB=E7=94=A8=E6=88=B7=EF=BC=8C=E5=8E=BB=E9=99=A4=E5=BD=93?= =?UTF-8?q?=E5=89=8D=E7=94=A8=E6=88=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/panel/GrantAuth/user/index.vue | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/frontend/src/views/panel/GrantAuth/user/index.vue b/frontend/src/views/panel/GrantAuth/user/index.vue index ebef162293..a4296b02e0 100644 --- a/frontend/src/views/panel/GrantAuth/user/index.vue +++ b/frontend/src/views/panel/GrantAuth/user/index.vue @@ -8,8 +8,15 @@ :row-style="{height: '35px'}" @filter-change="filterChange" > - + @@ -56,7 +63,7 @@ export default { userLists(1, 0, param).then(response => { const data = response.data // this.total = data.itemCount - this.data = data.listObject + this.data = data.listObject.filter(ele => ele.id !== this.$store.getters.user.userId) this.queryShareNodeIds() }) },