Skip to content

Commit

Permalink
fix: 修复停用用户是参数为空问题
Browse files Browse the repository at this point in the history
  • Loading branch information
hiparker committed Aug 9, 2022
1 parent 95d4d40 commit 8d14ccf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@
if (row.id) {
const { msg } = await doEnableAccount({
userId: row.id,
enable: enable
enabled: enable
});
row.enable = enable;
this.$baseMessage(msg, "success");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@
if (row.id) {
const { msg } = await doEnableAccount({
userId: row.id,
enable: enable
enabled: enable
});
row.enable = enable;
this.$baseMessage(msg, "success");
Expand Down

0 comments on commit 8d14ccf

Please sign in to comment.