From 34f970fdb200bf5f7a92bc4bfc489ef240ea53ee Mon Sep 17 00:00:00 2001 From: RubyLiu Date: Thu, 26 Oct 2023 10:56:20 +0800 Subject: [PATCH] =?UTF-8?q?style(=E9=A1=B9=E7=9B=AE=E8=AE=BE=E7=BD=AE):=20?= =?UTF-8?q?=E7=94=A8=E6=88=B7=E7=BB=84=E6=9F=A5=E7=9C=8B=E6=9D=83=E9=99=90?= =?UTF-8?q?=E6=8A=BD=E5=B1=89=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../business/ms-user-group-comp/authTable.vue | 18 ++++++++++++++---- .../userGroup/projectUserGroup.vue | 2 +- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/business/ms-user-group-comp/authTable.vue b/frontend/src/components/business/ms-user-group-comp/authTable.vue index dbb0d65e0d..c9f8feaf2d 100644 --- a/frontend/src/components/business/ms-user-group-comp/authTable.vue +++ b/frontend/src/components/business/ms-user-group-comp/authTable.vue @@ -48,6 +48,7 @@
@@ -93,10 +94,16 @@ isLastLeftFixed?: boolean; } - const props = defineProps<{ - current: CurrentUserGroupItem; - width?: string; - }>(); + const props = withDefaults( + defineProps<{ + current: CurrentUserGroupItem; + width?: string; + showBottom?: boolean; + }>(), + { + showBottom: true, + } + ); const systemType = inject('systemType'); @@ -346,6 +353,9 @@ initData(props.current.id, props.current.internal); } }); + defineExpose({ + canSave, + });