Browse Source

[新增]重置密码限制

beijing
邵佳豪 2 years ago
parent
commit
53c751ea26
  1. 19
      src/app/system-management/user/user.component.ts

19
src/app/system-management/user/user.component.ts

@ -333,9 +333,22 @@ export class UserComponent implements OnInit {
nzOkText: "确定",
nzOkType: "primary",
nzOnOk: () => {
let body = {
userId: item.id,
};
let body;
if (this.level == 1) {
body = {
userId: item.id,
};
} else {
if (item.userId) {
body = {
userId: item.userId,
};
} else {
this.message.create("warning", "审核未完成的不能重置密码");
return;
}
}
this.http
.post("/api/services/app/User/ResetPassword", body)
.subscribe((data: any) => {

Loading…
Cancel
Save