Skip to content

Commit

Permalink
Merge pull request #11 from hiparker/development
Browse files Browse the repository at this point in the history
fix: 修复停用用户是参数为空问题
  • Loading branch information
hiparker authored Aug 9, 2022
2 parents 8c8bbec + 8d14ccf commit d29ccfa
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 d29ccfa

Please sign in to comment.