|
|
|
@ -47,7 +47,7 @@ export class EnterpriseuserComponent implements OnInit {
|
|
|
|
|
RoleType: '2', |
|
|
|
|
PageNumber: String(this.pageNumber), |
|
|
|
|
} |
|
|
|
|
this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{ |
|
|
|
|
this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{ |
|
|
|
|
this.length = data.totalCount |
|
|
|
|
this.pageSize = data.pageSize |
|
|
|
|
this.dataSource = new MatTableDataSource<any>(data.items) |
|
|
|
@ -61,7 +61,7 @@ export class EnterpriseuserComponent implements OnInit {
|
|
|
|
|
RealName: this.name || '', |
|
|
|
|
RoleType: '2', |
|
|
|
|
} |
|
|
|
|
this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{ |
|
|
|
|
this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{ |
|
|
|
|
this.length = data.totalCount |
|
|
|
|
this.pageSize = data.pageSize |
|
|
|
|
this.pageEvent.pageIndex = 0 |
|
|
|
@ -77,7 +77,7 @@ export class EnterpriseuserComponent implements OnInit {
|
|
|
|
|
RoleType: '2', |
|
|
|
|
PageNumber: String(this.pageNumber), |
|
|
|
|
} |
|
|
|
|
this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{ |
|
|
|
|
this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{ |
|
|
|
|
this.length = data.totalCount |
|
|
|
|
this.pageSize = data.pageSize |
|
|
|
|
this.dataSource = new MatTableDataSource<any>(data.items) |
|
|
|
@ -90,11 +90,6 @@ export class EnterpriseuserComponent implements OnInit {
|
|
|
|
|
this.name = '' |
|
|
|
|
this.initData() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//跳转学习记录
|
|
|
|
|
openRecord(e){ |
|
|
|
|
window.open(`/home/statistics?name=${e.realName}&id=${e.name}`) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//创建用户
|
|
|
|
|
open(){ |
|
|
|
@ -131,7 +126,7 @@ export class EnterpriseuserComponent implements OnInit {
|
|
|
|
|
|
|
|
|
|
//重置密码
|
|
|
|
|
reset (e) { |
|
|
|
|
this.http.put(`/api/Users/${e.name}/ResetPassword`,{}).subscribe( |
|
|
|
|
this.http.put(`/api/ExamUsers/${e.name}/ResetPassword`,{}).subscribe( |
|
|
|
|
data=>{ |
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
@ -145,16 +140,6 @@ export class EnterpriseuserComponent implements OnInit {
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//查看企业信息
|
|
|
|
|
see (e) { |
|
|
|
|
this.http.get(`/api/CompanyUsers/${e.name}`).subscribe( |
|
|
|
|
data=> { |
|
|
|
|
let dialogRef = this.dialog.open(seeenterpriseuser, {data}); |
|
|
|
|
dialogRef.afterClosed().subscribe();
|
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//启用
|
|
|
|
|
enabled (e) { |
|
|
|
|
let date = new Date() |
|
|
|
@ -166,7 +151,7 @@ export class EnterpriseuserComponent implements OnInit {
|
|
|
|
|
creationTime : date, |
|
|
|
|
posts : e.posts |
|
|
|
|
} |
|
|
|
|
this.http.put(`/api/Users/${e.name}`,body).subscribe(data => { |
|
|
|
|
this.http.put(`/api/ExamUsers/${e.name}`,body).subscribe(data => { |
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000; |
|
|
|
@ -186,7 +171,7 @@ export class EnterpriseuserComponent implements OnInit {
|
|
|
|
|
creationTime : date, |
|
|
|
|
posts : e.posts |
|
|
|
|
} |
|
|
|
|
this.http.put(`/api/Users/${e.name}`,body).subscribe(data => { |
|
|
|
|
this.http.put(`/api/ExamUsers/${e.name}`,body).subscribe(data => { |
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000; |
|
|
|
@ -199,7 +184,7 @@ export class EnterpriseuserComponent implements OnInit {
|
|
|
|
|
delete (e) { |
|
|
|
|
let isTrue = confirm('您确定要删除吗') |
|
|
|
|
if (isTrue) { |
|
|
|
|
this.http.delete(`/api/Users/${e.name}`).subscribe(data=>{ |
|
|
|
|
this.http.delete(`/api/ExamUsers/${e.name}`).subscribe(data=>{ |
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
@ -239,22 +224,11 @@ export class editenterpriseuser {
|
|
|
|
|
this.data.posts.forEach((item) => { |
|
|
|
|
this.toppings.value.push(item.id) |
|
|
|
|
}) |
|
|
|
|
this.getAllPosts() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//获得所有职务
|
|
|
|
|
getAllPosts(){ |
|
|
|
|
this.http.get("/api/Posts").subscribe( (data:any) =>{ |
|
|
|
|
data.forEach(item => { |
|
|
|
|
if(item.name.indexOf("支队级") != -1){ |
|
|
|
|
this.detachmentPosts.push(item) |
|
|
|
|
}else if(item.name.indexOf("大队级") != -1){ |
|
|
|
|
this.brigadePosts.push(item) |
|
|
|
|
}else{ |
|
|
|
|
this.RescueStationPosts.push(item) |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -274,7 +248,7 @@ export class editenterpriseuser {
|
|
|
|
|
creationTime : date, |
|
|
|
|
posts : postsObj |
|
|
|
|
} |
|
|
|
|
this.http.put(`/api/Users/${this.data.name}`,body).subscribe(data => { |
|
|
|
|
this.http.put(`/api/ExamUsers/${this.data.name}`,body).subscribe(data => { |
|
|
|
|
this.dialogRef.close("修改成功"); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|