Commit 585d9d55867a31d4c72c8eb3bb4379ab9847077d

Authored by ww
1 parent 247b84be

fix: 修复账号管理管理员帐号编辑时回显错误

... ... @@ -163,7 +163,7 @@
163 163
164 164 const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
165 165 await resetFields();
166   - checkStrictly.value = !!data?.isUpdate;
  166 + checkStrictly.value = !data?.isAdd;
167 167 setModalProps({ confirmLoading: false });
168 168 isAdd.value = !!data?.isAdd;
169 169 const groupListModel = await findCurrentUserGroups();
... ...