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, + });