|
|
|
@ -28,7 +28,6 @@ export class NavigationComponent implements OnInit {
|
|
|
|
|
//左侧菜单点击事件
|
|
|
|
|
clickLeftmenu(name){ |
|
|
|
|
this.leftMenuname=name |
|
|
|
|
console.log(this.leftMenuname) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//支队级菜单
|
|
|
|
@ -70,20 +69,12 @@ export class NavigationComponent implements OnInit {
|
|
|
|
|
{ id:"学员管理", name:"学员管理" }, |
|
|
|
|
{ id:"教员管理", name:"教员管理" } |
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
isAdmin:boolean = false |
|
|
|
|
ngOnInit() { |
|
|
|
|
// this.http.get('/api/DataBanks').subscribe((data:any) => {
|
|
|
|
|
// if(data && data.length != 0){
|
|
|
|
|
// this.selectedDataBank = data[0].id
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// this.getAllDataBank()
|
|
|
|
|
this.selectedDataBank = "支队级-主官" |
|
|
|
|
if(sessionStorage.getItem("roleType") == "0"){ |
|
|
|
|
this.isAdmin = true |
|
|
|
|
} |
|
|
|
|
// if(sessionStorage.getItem("roleType") == "0"){
|
|
|
|
|
// this.isAdmin = true
|
|
|
|
|
// }
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -99,135 +90,6 @@ export class NavigationComponent implements OnInit {
|
|
|
|
|
this.darktheme = true |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//点击用户管理
|
|
|
|
|
clickUser(item){ |
|
|
|
|
this.selectedDataBank = item.id |
|
|
|
|
if(item.name == "学员管理"){ |
|
|
|
|
this.router.navigate([`/home/userManagement`]) |
|
|
|
|
}else if(item.name == "教员管理"){ |
|
|
|
|
this.router.navigate([`/home/teacherManagement`]) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//新增资料库
|
|
|
|
|
// addDataBank(){
|
|
|
|
|
// const dialogRef = this.dialog.open(AddDataBank, {//调用open方法打开对话框并且携带参数过去
|
|
|
|
|
// width: '260px',
|
|
|
|
|
// data: {}
|
|
|
|
|
// });
|
|
|
|
|
// dialogRef.afterClosed().subscribe(
|
|
|
|
|
// (data:any)=>{
|
|
|
|
|
// if(data){
|
|
|
|
|
// let headers = new HttpHeaders({
|
|
|
|
|
// 'Content-Type': 'text/json'
|
|
|
|
|
// });
|
|
|
|
|
// let options = {
|
|
|
|
|
// headers
|
|
|
|
|
// };
|
|
|
|
|
// let body = JSON.stringify(data.name);
|
|
|
|
|
// this.http.post('/api/DataBanks',body,options).subscribe(data => {
|
|
|
|
|
// this.getAllDataBank()
|
|
|
|
|
// const config = new MatSnackBarConfig();
|
|
|
|
|
// config.verticalPosition = 'top';
|
|
|
|
|
// config.duration = 3000
|
|
|
|
|
// this.snackBar.open('创建资料库成功','确定',config);
|
|
|
|
|
// },
|
|
|
|
|
// err => {
|
|
|
|
|
// const config = new MatSnackBarConfig();
|
|
|
|
|
// config.verticalPosition = 'top';
|
|
|
|
|
// config.duration = 3000
|
|
|
|
|
// this.snackBar.open(err,'确定',config);
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//获得所有资料库
|
|
|
|
|
// getAllDataBank(){
|
|
|
|
|
// this.http.get('/api/DataBanks').subscribe(data => {
|
|
|
|
|
// this.allDataBank = data
|
|
|
|
|
// // console.log(123,data)
|
|
|
|
|
// }
|
|
|
|
|
// ,
|
|
|
|
|
// err=>{
|
|
|
|
|
// // console.log(456,err)
|
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//点击资料库
|
|
|
|
|
clickLi(item){ |
|
|
|
|
this.selectedDataBank = item.id |
|
|
|
|
//触发子组件的方法
|
|
|
|
|
// this.child.getALLFileList(item.id);
|
|
|
|
|
// this.child.selection.clear();
|
|
|
|
|
this.router.navigate([`/home`]) |
|
|
|
|
this.emitService.eventEmit.emit(item.id); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//鼠标移入资料库
|
|
|
|
|
liEnter(item){ |
|
|
|
|
this.hoverDataBank = item.id |
|
|
|
|
} |
|
|
|
|
//鼠标移出资料库
|
|
|
|
|
liLeave(item){ |
|
|
|
|
this.hoverDataBank = "" |
|
|
|
|
} |
|
|
|
|
//修改资料库名称
|
|
|
|
|
editDataBankName(e,item){ |
|
|
|
|
e.stopPropagation() |
|
|
|
|
const dialogRef = this.dialog.open(EditDataBankName, {//调用open方法打开对话框并且携带参数过去
|
|
|
|
|
width: '260px', |
|
|
|
|
data: {name:item.name} |
|
|
|
|
}); |
|
|
|
|
dialogRef.afterClosed().subscribe( |
|
|
|
|
(data:any)=>{ |
|
|
|
|
if(data){ |
|
|
|
|
if(data != item.name){ |
|
|
|
|
let headers = new HttpHeaders({ |
|
|
|
|
'Content-Type': 'text/json' |
|
|
|
|
}); |
|
|
|
|
let options = { |
|
|
|
|
headers |
|
|
|
|
}; |
|
|
|
|
let body = JSON.stringify(data.name); |
|
|
|
|
this.http.put(`/api/DataBanks/${item.id}`,body,options).subscribe(data => { |
|
|
|
|
// this.getAllDataBank()
|
|
|
|
|
const config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
|
this.snackBar.open('修改资料库名称成功','确定',config); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}
|
|
|
|
|
} |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
//删除资料库
|
|
|
|
|
deleteDataBank(e,item){ |
|
|
|
|
e.stopPropagation() |
|
|
|
|
var r = confirm(`您确定要删除 ${item.name} 资料库吗?`); |
|
|
|
|
if (r == true) { |
|
|
|
|
this.http.delete(`/api/DataBanks/${item.id}`).subscribe(data => { |
|
|
|
|
// this.getAllDataBank()
|
|
|
|
|
let config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
|
this.snackBar.open('删除成功','确定',config); |
|
|
|
|
}, |
|
|
|
|
err=>{ |
|
|
|
|
let config = new MatSnackBarConfig(); |
|
|
|
|
config.verticalPosition = 'top'; |
|
|
|
|
config.duration = 3000 |
|
|
|
|
this.snackBar.open('删除失败,请联系管理员','确定',config); |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//新增资料库
|
|
|
|
|