Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
liqiang-fit2cloud committed Mar 25, 2024
2 parents 76dbdde + b363327 commit 122a1e3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ui/src/views/user-manage/component/UserDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,12 @@ watch(dialogVisible, (bool) => {
const open = (data: any) => {
if (data) {
userForm.value = cloneDeep(data)
userForm.value['id'] = data.id
userForm.value.username = data.username
userForm.value.email = data.email
userForm.value.password = data.password
userForm.value.phone = data.phone
userForm.value.nick_name = data.nick_name
isEdit.value = true
}
dialogVisible.value = true
Expand Down

0 comments on commit 122a1e3

Please sign in to comment.