Skip to content

Commit

Permalink
fix: 非配置模板批量修改权限取消权限默认值 (#3294)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuikill committed Jun 19, 2024
1 parent bf09e84 commit a630b9f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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: '',
});
Expand All @@ -170,11 +170,11 @@
(val) => {
if (val) {
localVal.value = {
privilege: '644',
privilege: '',
user: '',
user_group: '',
};
privilegeInputVal.value = '644';
privilegeInputVal.value = '';
}
},
);
Expand Down

0 comments on commit a630b9f

Please sign in to comment.