From a630b9f535ba4d2f70ce0bb579f2a58d31ac1262 Mon Sep 17 00:00:00 2001 From: Yuikill <105910874+Yuikill@users.noreply.github.com> Date: Wed, 19 Jun 2024 14:30:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=9D=9E=E9=85=8D=E7=BD=AE=E6=A8=A1?= =?UTF-8?q?=E6=9D=BF=E6=89=B9=E9=87=8F=E4=BF=AE=E6=94=B9=E6=9D=83=E9=99=90?= =?UTF-8?q?=E5=8F=96=E6=B6=88=E6=9D=83=E9=99=90=E9=BB=98=E8=AE=A4=E5=80=BC?= =?UTF-8?q?=20(#3294)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../config-list/config-table-list/batch-operation-btn.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bcs-services/bcs-bscp/ui/src/views/space/service/detail/config/config-list/config-table-list/batch-operation-btn.vue b/bcs-services/bcs-bscp/ui/src/views/space/service/detail/config/config-list/config-table-list/batch-operation-btn.vue index 80c8e129ac..4b9f5dba8b 100644 --- a/bcs-services/bcs-bscp/ui/src/views/space/service/detail/config/config-list/config-table-list/batch-operation-btn.vue +++ b/bcs-services/bcs-bscp/ui/src/views/space/service/detail/config/config-list/config-table-list/batch-operation-btn.vue @@ -145,10 +145,10 @@ const isBatchEditPermDialogShow = ref(false); const isPopoverOpen = ref(false); const buttonRef = ref(); - const privilegeInputVal = ref('644'); + const privilegeInputVal = ref(''); const showPrivilegeErrorTips = ref(false); const localVal = ref({ - privilege: '644', + privilege: '', user: '', user_group: '', }); @@ -170,11 +170,11 @@ (val) => { if (val) { localVal.value = { - privilege: '644', + privilege: '', user: '', user_group: '', }; - privilegeInputVal.value = '644'; + privilegeInputVal.value = ''; } }, );