|
|
|
@ -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) => { |
|
|
|
|