40 changed files with 3049 additions and 2110 deletions
@ -1,85 +1,99 @@ |
|||||||
/* |
/* |
||||||
* @Descripttion:
|
* @Descripttion: |
||||||
* @version:
|
* @version: |
||||||
* @Author: sueRimn |
* @Author: sueRimn |
||||||
* @Date: 2020-12-14 17:21:02 |
* @Date: 2020-12-14 17:21:02 |
||||||
* @LastEditors: sueRimn |
* @LastEditors: sueRimn |
||||||
* @LastEditTime: 2020-12-29 14:53:15 |
* @LastEditTime: 2020-12-29 14:53:15 |
||||||
*/ |
*/ |
||||||
import { Component, OnInit, ViewChild, Inject } from '@angular/core'; |
import { Component, OnInit, ViewChild, Inject } from "@angular/core"; |
||||||
import {HttpClient} from '@angular/common/http' |
import { HttpClient } from "@angular/common/http"; |
||||||
import { MatDialogRef, MatDialog, MAT_DIALOG_DATA } from '@angular/material/dialog'; |
import { |
||||||
import { MatPaginator } from '@angular/material/paginator'; |
MatDialogRef, |
||||||
import { MatTableDataSource } from '@angular/material/table'; |
MatDialog, |
||||||
import { PageEvent } from '@angular/material/paginator'; |
MAT_DIALOG_DATA, |
||||||
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; |
} from "@angular/material/dialog"; |
||||||
import {FormControl} from '@angular/forms'; |
import { MatPaginator } from "@angular/material/paginator"; |
||||||
import { Router,ActivatedRoute } from '@angular/router'; |
import { MatTableDataSource } from "@angular/material/table"; |
||||||
|
import { PageEvent } from "@angular/material/paginator"; |
||||||
|
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar"; |
||||||
|
import { FormControl } from "@angular/forms"; |
||||||
|
import { Router, ActivatedRoute } from "@angular/router"; |
||||||
|
|
||||||
@Component({ |
@Component({ |
||||||
selector: 'app-mark-papers-two', |
selector: "app-mark-papers-two", |
||||||
templateUrl: './mark-papers-two.component.html', |
templateUrl: "./mark-papers-two.component.html", |
||||||
styleUrls: ['./mark-papers-two.component.scss'] |
styleUrls: ["./mark-papers-two.component.scss"], |
||||||
}) |
}) |
||||||
export class MarkPapersTwoComponent implements OnInit { |
export class MarkPapersTwoComponent implements OnInit { |
||||||
|
constructor( |
||||||
constructor(private router: Router,private activatedRoute: ActivatedRoute,public http: HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar) { } |
private router: Router, |
||||||
|
private activatedRoute: ActivatedRoute, |
||||||
|
public http: HttpClient, |
||||||
|
public dialog: MatDialog, |
||||||
|
public snackBar: MatSnackBar |
||||||
|
) {} |
||||||
|
|
||||||
ngOnInit(): void { |
ngOnInit(): void { |
||||||
this.activatedRoute.queryParams.subscribe(param=>{ |
this.activatedRoute.queryParams.subscribe((param) => { |
||||||
this.headtext=param.level |
this.headtext = param.level; |
||||||
this.getid=param.id |
this.getid = param.id; |
||||||
this.getname=param.name |
this.getname = param.name; |
||||||
}); |
}); |
||||||
this.getAlltabledate() |
this.getAlltabledate(); |
||||||
|
|
||||||
//监听 此HTML标签焦点事件
|
//监听 此HTML标签焦点事件
|
||||||
document.addEventListener('visibilitychange', ()=>{ |
document.addEventListener("visibilitychange", () => { |
||||||
let isHidden = document.hidden |
let isHidden = document.hidden; |
||||||
if (!isHidden) { |
if (!isHidden) { |
||||||
this.getAlltabledate() |
this.getAlltabledate(); |
||||||
} |
} |
||||||
}) |
}); |
||||||
} |
} |
||||||
|
|
||||||
headtext |
ngOnDestroy(): void { |
||||||
getid//试卷id
|
document.removeEventListener("visibilitychange", () => {}); |
||||||
getname//考核中队
|
} |
||||||
dataSource |
|
||||||
|
headtext; |
||||||
|
getid; //试卷id
|
||||||
|
getname; //考核中队
|
||||||
|
dataSource; |
||||||
|
|
||||||
//分页
|
//分页
|
||||||
@ViewChild(MatPaginator, {static: true})
|
@ViewChild(MatPaginator, { static: true }) |
||||||
pageEvent: PageEvent; |
pageEvent: PageEvent; |
||||||
paginator: MatPaginator; |
paginator: MatPaginator; |
||||||
length:any; //共多少条数据
|
length: any; //共多少条数据
|
||||||
pageSize:any; //每页条数
|
pageSize: any; //每页条数
|
||||||
pageSizeOptions: number[] = [10] //设置每页条数
|
pageSizeOptions: number[] = [10]; //设置每页条数
|
||||||
PageNumber:any //第几页
|
PageNumber: any; //第几页
|
||||||
|
|
||||||
//获取表格信息
|
//获取表格信息
|
||||||
getAlltabledate(){ |
getAlltabledate() { |
||||||
let paramsdata:any = { |
let paramsdata: any = { |
||||||
PaperId:this.getid, |
PaperId: this.getid, |
||||||
PageNumber: this.PageNumber || '1', |
PageNumber: this.PageNumber || "1", |
||||||
PageSize: this.pageSizeOptions[0], |
PageSize: this.pageSizeOptions[0], |
||||||
Sort: null, |
Sort: null, |
||||||
SortType: null, |
SortType: null, |
||||||
} |
}; |
||||||
this.http.get("/api/Examinations",{params:paramsdata}).subscribe((data:any)=>{ |
this.http |
||||||
this.dataSource=data.items |
.get("/api/Examinations", { params: paramsdata }) |
||||||
this.length=data.totalCount |
.subscribe((data: any) => { |
||||||
}) |
this.dataSource = data.items; |
||||||
|
this.length = data.totalCount; |
||||||
|
}); |
||||||
} |
} |
||||||
|
|
||||||
//分页事件
|
//分页事件
|
||||||
chagePage(e){ |
chagePage(e) { |
||||||
this.PageNumber = e.pageIndex+1 |
this.PageNumber = e.pageIndex + 1; |
||||||
this.getAlltabledate() |
this.getAlltabledate(); |
||||||
} |
} |
||||||
|
|
||||||
//阅卷
|
//阅卷
|
||||||
reviewFiles (e) { |
reviewFiles(e) { |
||||||
window.open(`/reviewFiles?examId=${e.id}&paperType=1`) |
window.open(`/reviewFiles?examId=${e.id}&paperType=1`); |
||||||
} |
} |
||||||
|
|
||||||
} |
} |
||||||
|
@ -1,83 +1,92 @@ |
|||||||
import { Injectable } from '@angular/core'; |
import { Injectable } from "@angular/core"; |
||||||
import { |
import { |
||||||
HttpClient, HttpEvent, HttpInterceptor, HttpHandler, HttpRequest, |
HttpClient, |
||||||
HttpErrorResponse |
HttpEvent, |
||||||
} from '@angular/common/http'; |
HttpInterceptor, |
||||||
import { throwError } from 'rxjs' |
HttpHandler, |
||||||
import { catchError, retry } from 'rxjs/operators'; |
HttpRequest, |
||||||
import { Router,ActivatedRoute } from '@angular/router' |
HttpErrorResponse, |
||||||
import { CacheTokenService } from './cache-token.service' |
} from "@angular/common/http"; |
||||||
import { IsLoginService } from '../is-login.service' |
import { throwError } from "rxjs"; |
||||||
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; |
import { catchError, retry } from "rxjs/operators"; |
||||||
|
import { Router, ActivatedRoute } from "@angular/router"; |
||||||
|
import { CacheTokenService } from "./cache-token.service"; |
||||||
|
import { IsLoginService } from "../is-login.service"; |
||||||
|
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar"; |
||||||
|
|
||||||
//baseurl
|
//baseurl
|
||||||
// const baseurl = 'http://39.106.78.171:8008';
|
// const baseurl = 'http://39.106.78.171:8008';
|
||||||
|
|
||||||
@Injectable() |
@Injectable() |
||||||
export class BaseInterceptor implements HttpInterceptor { |
export class BaseInterceptor implements HttpInterceptor { |
||||||
|
constructor( |
||||||
constructor(private http:HttpClient,private router:Router,private route:ActivatedRoute,public token:CacheTokenService,public snackBar: MatSnackBar,public isLogin: IsLoginService) {} |
private http: HttpClient, |
||||||
|
private router: Router, |
||||||
|
private route: ActivatedRoute, |
||||||
|
public token: CacheTokenService, |
||||||
|
public snackBar: MatSnackBar, |
||||||
|
public isLogin: IsLoginService |
||||||
|
) {} |
||||||
|
|
||||||
intercept(req, next: HttpHandler) { |
intercept(req, next: HttpHandler) { |
||||||
|
|
||||||
let newReq = req.clone({ |
let newReq = req.clone({ |
||||||
url: req.hadBaseurl ? `${req.url}` : `${req.url}`, |
url: req.hadBaseurl ? `${req.url}` : `${req.url}`, |
||||||
}); |
}); |
||||||
if(!req.cancelToken) { |
if (!req.cancelToken) { |
||||||
/*获取token*/ |
/*获取token*/ |
||||||
let token = sessionStorage.getItem("token") || '' |
let token = sessionStorage.getItem("token") || ""; |
||||||
/*此处设置额外请求头,token令牌*/ |
/*此处设置额外请求头,token令牌*/ |
||||||
newReq.headers = |
newReq.headers = newReq.headers.set("Authorization", `Bearer ${token}`); |
||||||
newReq.headers.set('Authorization', `Bearer ${token}`) |
|
||||||
} |
} |
||||||
|
|
||||||
// 携带请求头发送下一次请求
|
// 携带请求头发送下一次请求
|
||||||
return next.handle(newReq) |
return next.handle(newReq).pipe( |
||||||
.pipe( |
//箭头函数,注意this指向
|
||||||
//箭头函数,注意this指向
|
catchError((err) => this.handleError(err)) |
||||||
catchError((err) => this.handleError(err)) |
); |
||||||
) |
|
||||||
} |
} |
||||||
|
|
||||||
// 捕获错误
|
// 捕获错误
|
||||||
//401 token过期 403没权限!!! 400参数错误 404未找到 614刷新令牌过期!!!
|
//401 token过期 403没权限!!! 400参数错误 404未找到 614刷新令牌过期!!!
|
||||||
|
|
||||||
private handleError(error: HttpErrorResponse) { |
private handleError(error: HttpErrorResponse) { |
||||||
// 用户认证失败返回登录页
|
// 用户认证失败返回登录页
|
||||||
if (error.status === 401||error.status === 614) { |
if (error.status === 401 || error.status === 614) { |
||||||
sessionStorage.clear() |
sessionStorage.clear(); |
||||||
localStorage.clear() |
localStorage.clear(); |
||||||
this.router.navigate(['/login']) |
this.router.navigate(["/login"]); |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('用户认证信息过期,请重新登录','确定',config); |
this.snackBar.open("用户认证信息过期,请重新登录", "确定", config); |
||||||
} |
} else if (error.status === 403) { |
||||||
if (error.status === 403) { |
|
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('对不起,您无此权限','确定',config); |
this.snackBar.open("对不起,您无此权限", "确定", config); |
||||||
} |
} else if (error.status === 400) { |
||||||
if (error.status === 400) { |
|
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('您输入的参数有误','确定',config); |
this.snackBar.open("您输入的参数有误", "确定", config); |
||||||
|
} else { |
||||||
|
// console.log(error.error)
|
||||||
|
const config = new MatSnackBarConfig(); |
||||||
|
config.verticalPosition = "top"; |
||||||
|
config.duration = 3000; |
||||||
|
this.snackBar.open(error.error, "确定", config); |
||||||
} |
} |
||||||
|
|
||||||
if (error.error instanceof ErrorEvent) { |
if (error.error instanceof ErrorEvent) { |
||||||
// 发生客户端或网络错误。相应处理。
|
// 发生客户端或网络错误。相应处理。
|
||||||
console.error('An error occurred:', error.error.message); |
console.error("An error occurred:", error.error.message); |
||||||
} else { |
} else { |
||||||
// 服务端返回http状态码
|
// 服务端返回http状态码
|
||||||
// 服务端返回错误信息
|
// 服务端返回错误信息
|
||||||
console.error( |
console.error( |
||||||
`Backend returned code ${error.status}, ` + |
`Backend returned code ${error.status}, ` + `body was: ${error.error}` |
||||||
`body was: ${error.error}`); |
); |
||||||
} |
} |
||||||
// 返回带有面向用户的错误信息
|
// 返回带有面向用户的错误信息
|
||||||
return throwError( |
return throwError(error.error); |
||||||
error.error); |
} |
||||||
}; |
|
||||||
} |
} |
||||||
|
@ -1,62 +1,69 @@ |
|||||||
import { Component, OnInit } from '@angular/core'; |
import { Component, OnInit } from "@angular/core"; |
||||||
import { Router,ActivatedRoute } from '@angular/router' |
import { Router, ActivatedRoute } from "@angular/router"; |
||||||
import { MatSnackBarConfig, MatSnackBar } from '@angular/material/snack-bar'; |
import { MatSnackBarConfig, MatSnackBar } from "@angular/material/snack-bar"; |
||||||
import { HttpClient } from '@angular/common/http'; |
import { HttpClient } from "@angular/common/http"; |
||||||
import { IsLoginService } from '../../is-login.service'//引入服务
|
import { IsLoginService } from "../../is-login.service"; //引入服务
|
||||||
import {CacheTokenService} from '../../http-interceptors/cache-token.service'//引入服务
|
import { CacheTokenService } from "../../http-interceptors/cache-token.service"; //引入服务
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Component({ |
@Component({ |
||||||
selector: 'app-lockscreen', |
selector: "app-lockscreen", |
||||||
templateUrl: './lockscreen.component.html', |
templateUrl: "./lockscreen.component.html", |
||||||
styleUrls: ['./lockscreen.component.scss'] |
styleUrls: ["./lockscreen.component.scss"], |
||||||
}) |
}) |
||||||
export class LockscreenComponent implements OnInit { |
export class LockscreenComponent implements OnInit { |
||||||
|
constructor( |
||||||
|
private http: HttpClient, |
||||||
|
private router: Router, |
||||||
|
private route: ActivatedRoute, |
||||||
|
public token: CacheTokenService, |
||||||
|
public snackBar: MatSnackBar, |
||||||
|
private isLogin: IsLoginService |
||||||
|
) {} |
||||||
|
|
||||||
constructor(private http:HttpClient,private router:Router,private route:ActivatedRoute,public token:CacheTokenService,public snackBar: MatSnackBar,private isLogin:IsLoginService) { } |
ngOnInit() {} |
||||||
|
|
||||||
ngOnInit() { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
roleType:string = '1'; //登录角色
|
|
||||||
errmsg :string = ''; //错误信息
|
|
||||||
|
|
||||||
|
|
||||||
|
roleType: string = "1"; //登录角色
|
||||||
|
errmsg: string = ""; //错误信息
|
||||||
|
|
||||||
//登录
|
//登录
|
||||||
onSubmit(e){ |
onSubmit(e) { |
||||||
let params = { roleType: this.roleType } |
let params = { roleType: this.roleType }; |
||||||
this.http.post('/api/ExamAccounts/SignIn',e,{params}).subscribe((data:any)=>{ |
this.http.post("/api/ExamAccounts/SignIn", e, { params }).subscribe( |
||||||
sessionStorage.setItem("realName",data.realName); |
(data: any) => { |
||||||
sessionStorage.setItem("roleType",data.roleType); |
sessionStorage.setItem("realName", data.realName); |
||||||
sessionStorage.setItem("token",data.token); |
sessionStorage.setItem("roleType", data.roleType); |
||||||
sessionStorage.setItem("refreshToken",data.refreshToken); |
sessionStorage.setItem("token", data.token); |
||||||
sessionStorage.setItem("level",data.level); |
sessionStorage.setItem("refreshToken", data.refreshToken); |
||||||
this.token.startUp(); //登陆成功启动定时器刷新token
|
sessionStorage.setItem("level", data.level); |
||||||
this.roleType == '1'? this.router.navigate(['/home/createexam-index']) : this.router.navigate(['/home/student-index']) |
this.http.get("/api/ExamAccounts/Profiles").subscribe((v: any) => { |
||||||
},(err) => {this.errmsg = err}) |
this.token.startUp(); //登陆成功启动定时器刷新token
|
||||||
|
this.roleType == "1" |
||||||
|
? this.router.navigate(["/home/createexam-index"]) |
||||||
|
: this.router.navigate(["/home/student-index"]); |
||||||
|
sessionStorage.setItem("creatorData", JSON.stringify(v)); |
||||||
|
}); |
||||||
|
}, |
||||||
|
(err) => { |
||||||
|
this.errmsg = err; |
||||||
|
} |
||||||
|
); |
||||||
} |
} |
||||||
|
|
||||||
//切换登录角色
|
//切换登录角色
|
||||||
toggle (e) { |
toggle(e) { |
||||||
this.roleType = e |
this.roleType = e; |
||||||
} |
} |
||||||
|
|
||||||
//跳转管理员登录页面
|
//跳转管理员登录页面
|
||||||
toAdminLogin () { |
toAdminLogin() { |
||||||
this.router.navigate(['/adminLogin']) //跳转管理员登录页面
|
this.router.navigate(["/adminLogin"]); //跳转管理员登录页面
|
||||||
} |
} |
||||||
|
|
||||||
//忘记密码弹窗
|
//忘记密码弹窗
|
||||||
forget () { |
forget() { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('请联系管理员重置密码','确定',config); |
this.snackBar.open("请联系管理员重置密码", "确定", config); |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} |
} |
||||||
|
@ -1,72 +1,86 @@ |
|||||||
/* |
/* |
||||||
* @Descripttion:
|
* @Descripttion: |
||||||
* @version:
|
* @version: |
||||||
* @Author: sueRimn |
* @Author: sueRimn |
||||||
* @Date: 2020-12-20 16:26:44 |
* @Date: 2020-12-20 16:26:44 |
||||||
* @LastEditors: sueRimn |
* @LastEditors: sueRimn |
||||||
* @LastEditTime: 2020-12-23 10:33:24 |
* @LastEditTime: 2020-12-23 10:33:24 |
||||||
*/ |
*/ |
||||||
import { Component, OnInit, ViewChild, Inject,Input } from '@angular/core'; |
import { Component, OnInit, ViewChild, Inject, Input } from "@angular/core"; |
||||||
import {HttpClient} from '@angular/common/http' |
import { HttpClient } from "@angular/common/http"; |
||||||
import { MatDialogRef, MatDialog, MAT_DIALOG_DATA } from '@angular/material/dialog'; |
import { |
||||||
import { MatPaginator } from '@angular/material/paginator'; |
MatDialogRef, |
||||||
import { MatTableDataSource } from '@angular/material/table'; |
MatDialog, |
||||||
import { PageEvent } from '@angular/material/paginator'; |
MAT_DIALOG_DATA, |
||||||
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; |
} from "@angular/material/dialog"; |
||||||
import {FormControl} from '@angular/forms'; |
import { MatPaginator } from "@angular/material/paginator"; |
||||||
import { Router,ActivatedRoute } from '@angular/router'; |
import { MatTableDataSource } from "@angular/material/table"; |
||||||
import { MatTreeFlatDataSource, MatTreeFlattener } from '@angular/material/tree'; |
import { PageEvent } from "@angular/material/paginator"; |
||||||
import { FlatTreeControl } from '@angular/cdk/tree'; |
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar"; |
||||||
import { TreeService } from '../../http-interceptors/tree.service' |
import { FormControl } from "@angular/forms"; |
||||||
|
import { Router, ActivatedRoute } from "@angular/router"; |
||||||
|
import { |
||||||
|
MatTreeFlatDataSource, |
||||||
|
MatTreeFlattener, |
||||||
|
} from "@angular/material/tree"; |
||||||
|
import { FlatTreeControl } from "@angular/cdk/tree"; |
||||||
|
import { TreeService } from "../../http-interceptors/tree.service"; |
||||||
|
|
||||||
@Component({ |
@Component({ |
||||||
selector: 'app-student-exam-record', |
selector: "app-student-exam-record", |
||||||
templateUrl: './student-exam-record.component.html', |
templateUrl: "./student-exam-record.component.html", |
||||||
styleUrls: ['./student-exam-record.component.scss'] |
styleUrls: ["./student-exam-record.component.scss"], |
||||||
}) |
}) |
||||||
export class StudentExamRecordComponent implements OnInit { |
export class StudentExamRecordComponent implements OnInit { |
||||||
|
constructor( |
||||||
constructor(private router: Router,private activatedRoute: ActivatedRoute,public http: HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar,private tree: TreeService) { } |
private router: Router, |
||||||
|
private activatedRoute: ActivatedRoute, |
||||||
|
public http: HttpClient, |
||||||
|
public dialog: MatDialog, |
||||||
|
public snackBar: MatSnackBar, |
||||||
|
private tree: TreeService |
||||||
|
) {} |
||||||
|
|
||||||
ngOnInit(): void { |
ngOnInit(): void { |
||||||
this.getAlltabledate() |
this.getAlltabledate(); |
||||||
} |
} |
||||||
|
|
||||||
//分页
|
//分页
|
||||||
@ViewChild(MatPaginator, {static: true})
|
@ViewChild(MatPaginator, { static: true }) |
||||||
pageEvent: PageEvent; |
pageEvent: PageEvent; |
||||||
paginator: MatPaginator; |
paginator: MatPaginator; |
||||||
length:any; //共多少条数据
|
length: any; //共多少条数据
|
||||||
pageSize:any; //每页条数
|
pageSize: any; //每页条数
|
||||||
pageSizeOptions: number[] = [10] //设置每页条数
|
pageSizeOptions: number[] = [10]; //设置每页条数
|
||||||
PageNumber:any //第几页
|
PageNumber: any; //第几页
|
||||||
startTime:[] |
startTime: []; |
||||||
endTime:[] |
endTime: []; |
||||||
tabledataSource//表格数据
|
tabledataSource; //表格数据
|
||||||
|
|
||||||
//分页事件
|
//分页事件
|
||||||
chagePage(e){ |
chagePage(e) { |
||||||
this.PageNumber = e.pageIndex+1 |
this.PageNumber = e.pageIndex + 1; |
||||||
this.getAlltabledate() |
this.getAlltabledate(); |
||||||
} |
} |
||||||
|
|
||||||
//获取表格信息
|
//获取表格信息
|
||||||
getAlltabledate(){ |
getAlltabledate() { |
||||||
let paramsdata:any = { |
let paramsdata: any = { |
||||||
PageNumber: this.PageNumber || '1', |
PageNumber: this.PageNumber || "1", |
||||||
PageSize: this.pageSizeOptions[0], |
PageSize: this.pageSizeOptions[0], |
||||||
Sort: null, |
Sort: null, |
||||||
SortType: null |
SortType: null, |
||||||
} |
}; |
||||||
this.http.get("/api/Examinations",{params:paramsdata}).subscribe((data:any)=>{ |
this.http |
||||||
this.tabledataSource=data.items |
.get("/api/Examinations", { params: paramsdata }) |
||||||
this.length=data.totalCount |
.subscribe((data: any) => { |
||||||
}) |
this.tabledataSource = data.items; |
||||||
|
this.length = data.totalCount; |
||||||
|
}); |
||||||
} |
} |
||||||
|
|
||||||
//查看试卷
|
//查看试卷
|
||||||
seePaper (e) { |
seePaper(e) { |
||||||
window.open(`/reviewFiles?examId=${e.id}&paperType=2`) |
window.open(`/reviewFiles?examId=${e.id}&paperType=2`); |
||||||
} |
} |
||||||
|
|
||||||
} |
} |
||||||
|
@ -0,0 +1,46 @@ |
|||||||
|
<h2 mat-dialog-title>新增/编辑管理员</h2> |
||||||
|
|
||||||
|
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm" class="example-container"> |
||||||
|
|
||||||
|
<div> |
||||||
|
<mat-form-field> |
||||||
|
<input matInput name="name" [(ngModel)]="name" required placeholder="登录账号" autocomplete="off"> |
||||||
|
</mat-form-field> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div> |
||||||
|
<mat-form-field> |
||||||
|
<input matInput name="realName" [(ngModel)]="realName" required placeholder="用户姓名" autocomplete="off"> |
||||||
|
</mat-form-field> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div style="margin-bottom: 10px;"> |
||||||
|
<p style="font-size: 14px;">消防救援站: <label style="margin-left: 10px;">{{organizationName}}</label></p> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div class="treeDiv"> |
||||||
|
<mat-tree [dataSource]="dataSource" [treeControl]="treeControl"> |
||||||
|
<mat-tree-node *matTreeNodeDef="let node" matTreeNodePadding (click)='selectTree(node)'> |
||||||
|
<button type="button" mat-icon-button disabled></button> |
||||||
|
<li>{{node.name}}</li> |
||||||
|
</mat-tree-node> |
||||||
|
<mat-tree-node *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding (click)='selectTree(node)'> |
||||||
|
<button type="button" mat-icon-button matTreeNodeToggle [attr.aria-label]="'toggle ' + node.name"> |
||||||
|
<mat-icon mat-icon class="mat-icon-rtl-mirror">{{treeControl.isExpanded(node) ? 'expand_more' : |
||||||
|
'chevron_right'}}</mat-icon> |
||||||
|
</button> |
||||||
|
<li>{{node.name}}</li> |
||||||
|
</mat-tree-node> |
||||||
|
</mat-tree> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div mat-dialog-content *ngIf="errmsg"> |
||||||
|
<p style="font-size: 14px; color: red;">{{errmsg}}</p> |
||||||
|
</div> |
||||||
|
|
||||||
|
<div mat-dialog-actions> |
||||||
|
<button mat-raised-button color="primary" type="submit" [disabled]="!form.form.valid">确定</button> |
||||||
|
<button mat-raised-button mat-dialog-close>取消</button> |
||||||
|
</div> |
||||||
|
|
||||||
|
</form> |
@ -0,0 +1,25 @@ |
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||||
|
|
||||||
|
import { AddEditAdminComponent } from './add-edit-admin.component'; |
||||||
|
|
||||||
|
describe('AddEditAdminComponent', () => { |
||||||
|
let component: AddEditAdminComponent; |
||||||
|
let fixture: ComponentFixture<AddEditAdminComponent>; |
||||||
|
|
||||||
|
beforeEach(async(() => { |
||||||
|
TestBed.configureTestingModule({ |
||||||
|
declarations: [ AddEditAdminComponent ] |
||||||
|
}) |
||||||
|
.compileComponents(); |
||||||
|
})); |
||||||
|
|
||||||
|
beforeEach(() => { |
||||||
|
fixture = TestBed.createComponent(AddEditAdminComponent); |
||||||
|
component = fixture.componentInstance; |
||||||
|
fixture.detectChanges(); |
||||||
|
}); |
||||||
|
|
||||||
|
it('should create', () => { |
||||||
|
expect(component).toBeTruthy(); |
||||||
|
}); |
||||||
|
}); |
@ -0,0 +1,110 @@ |
|||||||
|
import { HttpClient } from "@angular/common/http"; |
||||||
|
import { Component, OnInit, Inject } from "@angular/core"; |
||||||
|
import { MAT_DIALOG_DATA, MatDialogRef } from "@angular/material/dialog"; |
||||||
|
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar"; |
||||||
|
import { |
||||||
|
MatTreeFlatDataSource, |
||||||
|
MatTreeFlattener, |
||||||
|
} from "@angular/material/tree"; |
||||||
|
import { FlatTreeControl } from "@angular/cdk/tree"; |
||||||
|
@Component({ |
||||||
|
selector: "app-add-edit-admin", |
||||||
|
templateUrl: "./add-edit-admin.component.html", |
||||||
|
styleUrls: ["./add-edit-admin.component.scss"], |
||||||
|
}) |
||||||
|
export class AddEditAdminComponent implements OnInit { |
||||||
|
constructor( |
||||||
|
private http: HttpClient, |
||||||
|
public dialogRef: MatDialogRef<AddEditAdminComponent>, |
||||||
|
@Inject(MAT_DIALOG_DATA) public data, |
||||||
|
public snackBar: MatSnackBar |
||||||
|
) {} |
||||||
|
|
||||||
|
ngOnInit(): void { |
||||||
|
this.dataSource.data = this.data.treeData; |
||||||
|
if (this.data.userData) { |
||||||
|
this.name = JSON.parse(JSON.stringify(this.data.userData.name)); |
||||||
|
this.realName = JSON.parse(JSON.stringify(this.data.userData.realName)); |
||||||
|
this.organizationId = JSON.parse( |
||||||
|
JSON.stringify(this.data.userData.organizationId) |
||||||
|
); |
||||||
|
this.organizationName = JSON.parse( |
||||||
|
JSON.stringify(this.data.userData.organizationName) |
||||||
|
); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
errmsg: string = null; //捕获错误信息
|
||||||
|
|
||||||
|
name: string = null; |
||||||
|
realName: string = null; |
||||||
|
organizationId: string = null; |
||||||
|
organizationName: string = null; |
||||||
|
|
||||||
|
private _transformer = (node, level: number) => { |
||||||
|
//初始化tree
|
||||||
|
return { |
||||||
|
expandable: !!node.children && node.children.length > 0, |
||||||
|
name: node.name, |
||||||
|
level: level, |
||||||
|
id: node.id, |
||||||
|
parentId: node.parentId, |
||||||
|
children: node.children, |
||||||
|
}; |
||||||
|
}; |
||||||
|
treeControl = new FlatTreeControl<any>( |
||||||
|
(node) => node.level, |
||||||
|
(node) => node.expandable |
||||||
|
); |
||||||
|
treeFlattener = new MatTreeFlattener( |
||||||
|
this._transformer, |
||||||
|
(node) => node.level, |
||||||
|
(node) => node.expandable, |
||||||
|
(node) => node.children |
||||||
|
); |
||||||
|
dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); |
||||||
|
hasChild = (_: number, node: any) => node.expandable; |
||||||
|
|
||||||
|
//选择tree节点
|
||||||
|
selectTree(e) { |
||||||
|
this.organizationId = e.id; |
||||||
|
this.organizationName = e.name; |
||||||
|
} |
||||||
|
|
||||||
|
//提交创建表单
|
||||||
|
onSubmit(e) { |
||||||
|
if (this.organizationId && this.organizationName) { |
||||||
|
if (this.data.userData) { |
||||||
|
e.phone = this.data.userData.phone; |
||||||
|
e.identityCard = this.data.userData.identityCard; |
||||||
|
e.roleType = 0; |
||||||
|
e.id = this.data.userData.id; |
||||||
|
e.enabled = this.data.userData.enabled; |
||||||
|
e.creationTime = new Date(); |
||||||
|
e.organizationId = this.organizationId; |
||||||
|
e.organizationName = this.organizationName; |
||||||
|
this.http |
||||||
|
.put(`/api/ExamUsers/${this.data.userData.id}`, e) |
||||||
|
.subscribe((data) => { |
||||||
|
this.dialogRef.close("success"); |
||||||
|
}); |
||||||
|
} else { |
||||||
|
e.phone = '13864512542'; |
||||||
|
e.identityCard = '370304199809261911'; |
||||||
|
e.roleType = 0; |
||||||
|
e.enabled = true; |
||||||
|
e.creationTime = new Date(); |
||||||
|
e.organizationId = this.organizationId; |
||||||
|
e.organizationName = this.organizationName; |
||||||
|
this.http.post(`/api/ExamUsers`, e).subscribe((data) => { |
||||||
|
this.dialogRef.close("success"); |
||||||
|
}); |
||||||
|
} |
||||||
|
} else { |
||||||
|
const config = new MatSnackBarConfig(); |
||||||
|
config.verticalPosition = "top"; |
||||||
|
config.duration = 3000; |
||||||
|
this.snackBar.open("请选择消防救援站", "确定", config); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,73 @@ |
|||||||
|
<div class="content"> |
||||||
|
<div class="header"> |
||||||
|
<form #form="ngForm"> |
||||||
|
<div class="queryBox"> |
||||||
|
<div class="queryField"> |
||||||
|
<label style="margin-right: 10px;">用户账号:</label> |
||||||
|
<input type="text" [(ngModel)]="identityCard" name="identityCard" autocomplete="off" |
||||||
|
placeholder="请输入用户账号"> |
||||||
|
</div> |
||||||
|
<div class="queryField"> |
||||||
|
<label style="margin-right: 10px;">用户姓名:</label> |
||||||
|
<input type="text" [(ngModel)]="name" name="name" autocomplete="off" placeholder="请输入用户姓名"> |
||||||
|
</div> |
||||||
|
<div class="queryField" style="position: relative;"> |
||||||
|
<label style="margin-right: 10px;">消防救援站:</label> |
||||||
|
<nz-tree-select [nzDropdownClassName]="'maxHeightTreeSelect'" style="width: 180px" [nzNodes]="nodes" |
||||||
|
nzShowSearch nzPlaceHolder="请选择救援站" name="orTree" [(ngModel)]="organizationId" |
||||||
|
[nzAllowClear]="false"> |
||||||
|
</nz-tree-select> |
||||||
|
</div> |
||||||
|
<div class="queryField"> |
||||||
|
<button mat-raised-button (click)='getAllUsers()' style="background-color: #07CDCF;">查询</button> |
||||||
|
<button mat-raised-button (click)='empty()' |
||||||
|
style="margin-left: 10px; background-color: #FF8678;">重置</button> |
||||||
|
</div> |
||||||
|
<div class="queryField"> |
||||||
|
<button mat-raised-button (click)='open()' style="background-color: #07CDCF;">新增管理员</button> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</form> |
||||||
|
</div> |
||||||
|
|
||||||
|
<table mat-table [dataSource]="dataSource"> |
||||||
|
<ng-container matColumnDef="identitycard"> |
||||||
|
<th mat-header-cell *matHeaderCellDef>用户帐号</th> |
||||||
|
<td mat-cell *matCellDef="let element">{{element.name}}</td> |
||||||
|
</ng-container> |
||||||
|
|
||||||
|
<ng-container matColumnDef="name"> |
||||||
|
<th mat-header-cell *matHeaderCellDef>用户姓名</th> |
||||||
|
<td mat-cell *matCellDef="let element">{{element.realName}}</td> |
||||||
|
</ng-container> |
||||||
|
|
||||||
|
<ng-container matColumnDef="post"> |
||||||
|
<th mat-header-cell *matHeaderCellDef>消防救援站</th> |
||||||
|
<td mat-cell *matCellDef="let element">{{element.organizationName}}</td> |
||||||
|
</ng-container> |
||||||
|
|
||||||
|
<ng-container matColumnDef="time"> |
||||||
|
<th mat-header-cell *matHeaderCellDef>创建时间</th> |
||||||
|
<td mat-cell *matCellDef="let element">{{element.creationTime | date:'yyyy-MM-dd'}}</td> |
||||||
|
</ng-container> |
||||||
|
|
||||||
|
<ng-container matColumnDef="operation"> |
||||||
|
<th mat-header-cell *matHeaderCellDef>操作</th> |
||||||
|
<td mat-cell *matCellDef="let element"> |
||||||
|
<span class="operationSpan"><span class="spanbtn green" (click)="reset(element)">重置密码</span></span> |
||||||
|
<span class="operationSpan"><span class="spanbtn green" (click)="edit(element)">编辑</span></span> |
||||||
|
<span *ngIf="element.enabled" class="operationSpan"><span class="spanbtn red" |
||||||
|
(click)="noEnabled(element)">禁用</span></span> |
||||||
|
<span *ngIf="!element.enabled" class="operationSpan"><span class="spanbtn gray" |
||||||
|
(click)="enabled(element)">启用</span></span> |
||||||
|
<span class="operationSpan"><span class="spanbtn red" (click)="delete(element)">删除</span></span> |
||||||
|
</td> |
||||||
|
</ng-container> |
||||||
|
|
||||||
|
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> |
||||||
|
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr> |
||||||
|
</table> |
||||||
|
<mat-paginator [length]="length" [pageSize]="pageSize" (page)="chagePage($event)"> |
||||||
|
</mat-paginator> |
||||||
|
|
||||||
|
</div> |
@ -0,0 +1,115 @@ |
|||||||
|
table { |
||||||
|
width: 100%; |
||||||
|
text-align: center; |
||||||
|
|
||||||
|
.cdk-header-cell { |
||||||
|
text-align: center; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.content { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
overflow: hidden; |
||||||
|
background: #F2F5F6; |
||||||
|
} |
||||||
|
|
||||||
|
.header { |
||||||
|
width: 100%; |
||||||
|
padding: 10px; |
||||||
|
margin-bottom: 10px; |
||||||
|
box-sizing: border-box; |
||||||
|
|
||||||
|
.queryBox { |
||||||
|
box-sizing: border-box; |
||||||
|
padding: 5px 15px; |
||||||
|
display: flex; |
||||||
|
flex-direction: row; |
||||||
|
flex-wrap: wrap; |
||||||
|
align-items: center; |
||||||
|
justify-content: center; |
||||||
|
|
||||||
|
.queryField { |
||||||
|
margin: 0 25px; |
||||||
|
font-size: 14px; |
||||||
|
|
||||||
|
input { |
||||||
|
width: 160px; |
||||||
|
height: 30px; |
||||||
|
line-height: 30px; |
||||||
|
border-radius: 2px; |
||||||
|
padding-left: 6px; |
||||||
|
outline: none; |
||||||
|
border: 1px solid rgb(226, 211, 211); |
||||||
|
} |
||||||
|
|
||||||
|
button { |
||||||
|
color: #fff; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
//queryBox |
||||||
|
} |
||||||
|
|
||||||
|
.operationSpan { |
||||||
|
margin: 0 10px; |
||||||
|
|
||||||
|
.spanbtn { |
||||||
|
font-weight: 550; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
|
||||||
|
.green { |
||||||
|
color: #04ced1; |
||||||
|
} |
||||||
|
|
||||||
|
.red { |
||||||
|
color: #FF8678 |
||||||
|
} |
||||||
|
|
||||||
|
.gray { |
||||||
|
color: gray; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
//tree |
||||||
|
.treeDiv { |
||||||
|
max-height: 300px; |
||||||
|
overflow-y: auto; |
||||||
|
|
||||||
|
.mat-icon-button { |
||||||
|
width: 20px; |
||||||
|
height: 20px; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
li { |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
|
||||||
|
.mat-tree-node:hover { |
||||||
|
background-color: rgb(240, 236, 236); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.closeTree { |
||||||
|
cursor: pointer; |
||||||
|
position: absolute; |
||||||
|
top: 40px; |
||||||
|
right: -95px; |
||||||
|
z-index: 100; |
||||||
|
} |
||||||
|
|
||||||
|
.searchTree { |
||||||
|
.mat-tree-node button .mat-icon { |
||||||
|
color: #000; |
||||||
|
} |
||||||
|
|
||||||
|
border: 1px solid rgb(207, 204, 204); |
||||||
|
width: 350px; |
||||||
|
max-height: 150px; |
||||||
|
position: absolute; |
||||||
|
top: 40px; |
||||||
|
left: 0; |
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||||
|
|
||||||
|
import { AdministratorsComponent } from './administrators.component'; |
||||||
|
|
||||||
|
describe('AdministratorsComponent', () => { |
||||||
|
let component: AdministratorsComponent; |
||||||
|
let fixture: ComponentFixture<AdministratorsComponent>; |
||||||
|
|
||||||
|
beforeEach(async(() => { |
||||||
|
TestBed.configureTestingModule({ |
||||||
|
declarations: [ AdministratorsComponent ] |
||||||
|
}) |
||||||
|
.compileComponents(); |
||||||
|
})); |
||||||
|
|
||||||
|
beforeEach(() => { |
||||||
|
fixture = TestBed.createComponent(AdministratorsComponent); |
||||||
|
component = fixture.componentInstance; |
||||||
|
fixture.detectChanges(); |
||||||
|
}); |
||||||
|
|
||||||
|
it('should create', () => { |
||||||
|
expect(component).toBeTruthy(); |
||||||
|
}); |
||||||
|
}); |
@ -0,0 +1,200 @@ |
|||||||
|
import { Component, OnInit, ViewChild, Inject } from "@angular/core"; |
||||||
|
import { HttpClient } from "@angular/common/http"; |
||||||
|
import { |
||||||
|
MatDialogRef, |
||||||
|
MatDialog, |
||||||
|
MAT_DIALOG_DATA, |
||||||
|
} from "@angular/material/dialog"; |
||||||
|
import { MatPaginator } from "@angular/material/paginator"; |
||||||
|
import { MatTableDataSource } from "@angular/material/table"; |
||||||
|
import { PageEvent } from "@angular/material/paginator"; |
||||||
|
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar"; |
||||||
|
import { FormControl } from "@angular/forms"; |
||||||
|
import { FlatTreeControl } from "@angular/cdk/tree"; |
||||||
|
import { |
||||||
|
MatTreeFlatDataSource, |
||||||
|
MatTreeFlattener, |
||||||
|
} from "@angular/material/tree"; |
||||||
|
import { TreeService } from "src/app/http-interceptors/tree.service"; |
||||||
|
import { AddEditAdminComponent } from "./add-edit-admin/add-edit-admin.component"; |
||||||
|
|
||||||
|
@Component({ |
||||||
|
selector: "app-administrators", |
||||||
|
templateUrl: "./administrators.component.html", |
||||||
|
styleUrls: ["./administrators.component.scss"], |
||||||
|
}) |
||||||
|
export class AdministratorsComponent implements OnInit { |
||||||
|
constructor( |
||||||
|
public http: HttpClient, |
||||||
|
public dialog: MatDialog, |
||||||
|
public snackBar: MatSnackBar, |
||||||
|
public treeService: TreeService |
||||||
|
) {} |
||||||
|
|
||||||
|
loginUserInfo; |
||||||
|
ngOnInit() { |
||||||
|
this.loginUserInfo = JSON.parse(sessionStorage.getItem("creatorData")); |
||||||
|
this.getOrganizations(); |
||||||
|
} |
||||||
|
name: any; //用户姓名
|
||||||
|
identityCard: any; //用户账号
|
||||||
|
organizationId; |
||||||
|
allOrganizations: any; //所有组织机构
|
||||||
|
nodes = []; |
||||||
|
//获取所有组织机构
|
||||||
|
getOrganizations() { |
||||||
|
this.http |
||||||
|
.get("/api/Organizations", { |
||||||
|
params: { |
||||||
|
strict: "true", |
||||||
|
}, |
||||||
|
}) |
||||||
|
.subscribe((data: any) => { |
||||||
|
this.allOrganizations = data; |
||||||
|
this.allOrganizations.forEach((element) => { |
||||||
|
if (element.id === this.loginUserInfo.organizationId) { |
||||||
|
element.parentId = null; |
||||||
|
} |
||||||
|
}); |
||||||
|
this.nodes = [...this.treeService.toTree(this.allOrganizations)]; |
||||||
|
this.organizationId = this.loginUserInfo.organizationId; |
||||||
|
this.getAllUsers(); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
displayedColumns: string[] = [ |
||||||
|
"identitycard", |
||||||
|
"name", |
||||||
|
"post", |
||||||
|
"time", |
||||||
|
"operation", |
||||||
|
]; |
||||||
|
|
||||||
|
dataSource: any; //所有企业用户表格数据
|
||||||
|
//更新当前页数据
|
||||||
|
pageNumber: number = 1; //第几页
|
||||||
|
pageSize: any = "10"; //每页条数
|
||||||
|
getAllUsers() { |
||||||
|
let data = { |
||||||
|
Name: this.identityCard || "", |
||||||
|
RealName: this.name || "", |
||||||
|
OrganizationId: this.organizationId || "", |
||||||
|
RoleType: "0", |
||||||
|
PageNumber: String(this.pageNumber), |
||||||
|
PageSize: this.pageSize, |
||||||
|
}; |
||||||
|
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); |
||||||
|
}); |
||||||
|
} |
||||||
|
//分页
|
||||||
|
@ViewChild(MatPaginator, { static: true }) |
||||||
|
pageEvent: PageEvent; |
||||||
|
paginator: MatPaginator; |
||||||
|
length: any; //共多少条数据
|
||||||
|
|
||||||
|
//分页切换
|
||||||
|
chagePage(e) { |
||||||
|
this.pageNumber = e.pageIndex + 1; |
||||||
|
this.getAllUsers(); |
||||||
|
} |
||||||
|
|
||||||
|
//清空搜索
|
||||||
|
empty() { |
||||||
|
this.pageNumber = 1; |
||||||
|
this.name = ""; |
||||||
|
this.identityCard = ""; |
||||||
|
this.organizationId = this.loginUserInfo.organizationId; |
||||||
|
this.getAllUsers(); |
||||||
|
} |
||||||
|
|
||||||
|
//创建教员
|
||||||
|
open() { |
||||||
|
let data = { treeData: this.nodes, userData: null }; |
||||||
|
let dialogRef = this.dialog.open(AddEditAdminComponent, { data }); |
||||||
|
dialogRef.afterClosed().subscribe((data) => { |
||||||
|
if (data) { |
||||||
|
const config = new MatSnackBarConfig(); |
||||||
|
config.verticalPosition = "top"; |
||||||
|
config.duration = 3000; |
||||||
|
this.snackBar.open("创建成功!", "确定", config); |
||||||
|
this.getAllUsers(); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
//编辑企业用户
|
||||||
|
edit(e) { |
||||||
|
let data = { treeData: this.nodes, userData: e }; |
||||||
|
let dialogRef = this.dialog.open(AddEditAdminComponent, { data }); |
||||||
|
dialogRef.afterClosed().subscribe((data) => { |
||||||
|
if (data) { |
||||||
|
const config = new MatSnackBarConfig(); |
||||||
|
config.verticalPosition = "top"; |
||||||
|
config.duration = 3000; |
||||||
|
this.snackBar.open("修改成功!", "确定", config); |
||||||
|
this.getAllUsers(); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
//重置密码
|
||||||
|
reset(e) { |
||||||
|
this.http.put(`/api/ExamUsers/${e.id}/ResetPassword`, {}).subscribe( |
||||||
|
(data) => { |
||||||
|
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("重置密码失败!", "确定", config); |
||||||
|
} |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
//启用
|
||||||
|
enabled(e) { |
||||||
|
e.date = new Date(); |
||||||
|
e.enabled = true; |
||||||
|
this.http.put(`/api/ExamUsers/${e.id}`, e).subscribe((data) => { |
||||||
|
const config = new MatSnackBarConfig(); |
||||||
|
config.verticalPosition = "top"; |
||||||
|
config.duration = 3000; |
||||||
|
this.snackBar.open("启用成功!", "确定", config); |
||||||
|
this.getAllUsers(); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
//禁用
|
||||||
|
noEnabled(e) { |
||||||
|
e.date = new Date(); |
||||||
|
e.enabled = false; |
||||||
|
this.http.put(`/api/ExamUsers/${e.id}`, e).subscribe((data) => { |
||||||
|
const config = new MatSnackBarConfig(); |
||||||
|
config.verticalPosition = "top"; |
||||||
|
config.duration = 3000; |
||||||
|
this.snackBar.open("禁用成功!", "确定", config); |
||||||
|
this.getAllUsers(); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
//删除
|
||||||
|
delete(e) { |
||||||
|
let isTrue = confirm("您确定要删除吗"); |
||||||
|
if (isTrue) { |
||||||
|
this.http.delete(`/api/ExamUsers/${e.id}`).subscribe((data) => { |
||||||
|
const config = new MatSnackBarConfig(); |
||||||
|
config.verticalPosition = "top"; |
||||||
|
config.duration = 3000; |
||||||
|
this.snackBar.open("删除成功!", "确定", config); |
||||||
|
this.getAllUsers(); |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
File diff suppressed because it is too large
Load Diff
@ -1,14 +1,19 @@ |
|||||||
<div style="width: 200px;" > |
<div class="box"> |
||||||
<div style="text-align: center;font-weight: 550;">请为此预案答卷评分</div> |
<div style="text-align: center;font-weight: 550;">请为此预案答卷评分</div> |
||||||
<div class="contant"> |
<div class="content"> |
||||||
<form class="example-form"> |
<form> |
||||||
<mat-form-field class="example-full-width"> |
<div class="formItem"> |
||||||
<input name="score" matInput [placeholder]="score" type="number" (input)="inputNum()" [(ngModel)]="scoreNum"> |
<span>得分(最高分为{{data.score}}分):</span> |
||||||
</mat-form-field> |
<input name="score" type="number" [(ngModel)]="scoreNum"> |
||||||
</form> |
</div> |
||||||
</div> |
<div class="formItem"> |
||||||
<div style="text-align: center;" class="btnbox"> |
<span>备注:</span> |
||||||
<button mat-raised-button color="primary" style="border: none;" (click)="ok()">确定</button> |
<textarea name="notes" [(ngModel)]="notes"></textarea> |
||||||
<button mat-raised-button mat-dialog-close>取消</button> |
</div> |
||||||
</div> |
</form> |
||||||
</div> |
</div> |
||||||
|
<div style="text-align: center;" class="btnbox"> |
||||||
|
<button mat-raised-button color="primary" style="border: none;" (click)="ok()">确定</button> |
||||||
|
<button mat-raised-button mat-dialog-close>取消</button> |
||||||
|
</div> |
||||||
|
</div> |
@ -1,10 +1,35 @@ |
|||||||
|
.box{ |
||||||
|
width: 280px; |
||||||
|
height: 280px; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
} |
||||||
|
|
||||||
|
.content{ |
||||||
|
width: 100%; |
||||||
|
flex: 1; |
||||||
|
margin: 15px 0; |
||||||
|
|
||||||
|
.formItem{ |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
margin: 5px 0; |
||||||
|
span{ |
||||||
|
font-size: 14px; |
||||||
|
} |
||||||
|
input{ |
||||||
|
width: 100%; |
||||||
|
height: 36px; |
||||||
|
} |
||||||
|
textarea{ |
||||||
|
width: 278px; |
||||||
|
height: 90px; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
.btnbox{ |
.btnbox{ |
||||||
button{ |
button{ |
||||||
margin: 0 5px; |
margin: 0 5px; |
||||||
} |
} |
||||||
} |
|
||||||
.contant{ |
|
||||||
height: 60px; |
|
||||||
width: 100%; |
|
||||||
margin: 15px 0; |
|
||||||
} |
} |
@ -1,351 +1,324 @@ |
|||||||
import { Component, OnInit, ViewChild, Inject } from '@angular/core'; |
import { Component, OnInit, ViewChild, Inject } from "@angular/core"; |
||||||
import {HttpClient} from '@angular/common/http' |
import { HttpClient } from "@angular/common/http"; |
||||||
import { MatDialogRef, MatDialog, MAT_DIALOG_DATA } from '@angular/material/dialog'; |
import { |
||||||
import { MatPaginator } from '@angular/material/paginator'; |
MatDialogRef, |
||||||
import { MatTableDataSource } from '@angular/material/table'; |
MatDialog, |
||||||
import { PageEvent } from '@angular/material/paginator'; |
MAT_DIALOG_DATA, |
||||||
import { AddEnterpriserUser } from './addenterpriseuser.component' |
} from "@angular/material/dialog"; |
||||||
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; |
import { MatPaginator } from "@angular/material/paginator"; |
||||||
import {FormControl} from '@angular/forms'; |
import { MatTableDataSource } from "@angular/material/table"; |
||||||
import { Router,ActivatedRoute } from '@angular/router' |
import { PageEvent } from "@angular/material/paginator"; |
||||||
import { FlatTreeControl } from '@angular/cdk/tree'; |
import { AddEnterpriserUser } from "./addenterpriseuser.component"; |
||||||
import { MatTreeFlatDataSource, MatTreeFlattener } from '@angular/material/tree'; |
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar"; |
||||||
|
import { FormControl } from "@angular/forms"; |
||||||
|
import { Router, ActivatedRoute } from "@angular/router"; |
||||||
|
import { FlatTreeControl } from "@angular/cdk/tree"; |
||||||
|
import { |
||||||
|
MatTreeFlatDataSource, |
||||||
|
MatTreeFlattener, |
||||||
|
} from "@angular/material/tree"; |
||||||
|
import { TreeService } from "src/app/http-interceptors/tree.service"; |
||||||
|
|
||||||
@Component({ |
@Component({ |
||||||
selector: 'app-enterpriseuser', |
selector: "app-enterpriseuser", |
||||||
templateUrl: './enterpriseuser.component.html', |
templateUrl: "./enterpriseuser.component.html", |
||||||
styleUrls: ['./enterpriseuser.component.scss'] |
styleUrls: ["./enterpriseuser.component.scss"], |
||||||
}) |
}) |
||||||
export class EnterpriseuserComponent implements OnInit { |
export class EnterpriseuserComponent implements OnInit { |
||||||
|
constructor( |
||||||
constructor(public http: HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar,private router:Router,private route:ActivatedRoute) { } |
public http: HttpClient, |
||||||
|
public dialog: MatDialog, |
||||||
|
public snackBar: MatSnackBar, |
||||||
|
public treeService: TreeService |
||||||
|
) {} |
||||||
|
|
||||||
|
loginUserInfo; |
||||||
ngOnInit() { |
ngOnInit() { |
||||||
this.initData() |
this.loginUserInfo = JSON.parse(sessionStorage.getItem("creatorData")); |
||||||
this.getOrganizations() |
this.getOrganizations(); |
||||||
} |
} |
||||||
|
|
||||||
allOrganizations:any; //所有组织机构
|
allOrganizations: any; //所有组织机构
|
||||||
treeData:any = []; //tree型 data
|
|
||||||
isShowTree:boolean = false; //树形结构是否展示
|
|
||||||
showTree () { this.isShowTree = true } |
|
||||||
hideTree () { this.isShowTree = false } |
|
||||||
|
|
||||||
//获取所有组织机构
|
//获取所有组织机构
|
||||||
getOrganizations () { |
nodes; |
||||||
this.http.get('/api/Organizations').subscribe((data:any)=>{ |
organizationId; |
||||||
this.allOrganizations = data |
getOrganizations() { |
||||||
data.forEach(element => { |
this.http |
||||||
element.children = [] |
.get("/api/Organizations", { |
||||||
data.forEach(item => { item.parentId === element.id? element.children.push(item) : null }); |
params: { |
||||||
}); |
strict: "true", |
||||||
data.forEach(element => { |
}, |
||||||
!element.parentId? this.treeData.push(element) : null |
}) |
||||||
|
.subscribe((data: any) => { |
||||||
|
this.allOrganizations = data; |
||||||
|
this.allOrganizations.forEach((element) => { |
||||||
|
if (element.id === this.loginUserInfo.organizationId) { |
||||||
|
element.parentId = null; |
||||||
|
} |
||||||
|
}); |
||||||
|
this.nodes = [...this.treeService.toTree(this.allOrganizations)]; |
||||||
|
this.organizationId = this.loginUserInfo.organizationId; |
||||||
|
this.getAllUsers(); |
||||||
}); |
}); |
||||||
this.dataSources.data = this.treeData |
|
||||||
}) //http
|
|
||||||
} |
|
||||||
|
|
||||||
organizationId:string = null; |
|
||||||
organizationName:string = null; |
|
||||||
|
|
||||||
private _transformer = (node, level: number) => { //初始化tree
|
|
||||||
return { |
|
||||||
expandable: !!node.children && node.children.length > 0, |
|
||||||
name: node.name, |
|
||||||
level: level, |
|
||||||
id: node.id, |
|
||||||
parentId: node.parentId, |
|
||||||
children: node.children |
|
||||||
}; |
|
||||||
} |
|
||||||
treeControl = new FlatTreeControl<any>(node => node.level, node => node.expandable); |
|
||||||
treeFlattener = new MatTreeFlattener(this._transformer, node => node.level, node => node.expandable, node => node.children); |
|
||||||
dataSources = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); |
|
||||||
hasChild = (_: number, node: any) => node.expandable; |
|
||||||
|
|
||||||
//选择tree节点
|
|
||||||
selectTree (e) { |
|
||||||
this.organizationId = e.id |
|
||||||
this.organizationName = e.name |
|
||||||
this.isShowTree = false |
|
||||||
} |
} |
||||||
|
|
||||||
displayedColumns: string[] = [ 'name','identitycard', 'post', 'tel', 'time', 'operation',]; |
displayedColumns: string[] = [ |
||||||
dataSource:any; //所有企业用户
|
"name", |
||||||
|
"identitycard", |
||||||
|
"post", |
||||||
|
"tel", |
||||||
|
"time", |
||||||
|
"operation", |
||||||
|
]; |
||||||
|
dataSource: any; //所有企业用户
|
||||||
|
|
||||||
name:any //姓名
|
name: any; //姓名
|
||||||
identityCard:any //身份证
|
identityCard: any; //身份证
|
||||||
|
|
||||||
//分页
|
//分页
|
||||||
@ViewChild(MatPaginator, {static: true})
|
@ViewChild(MatPaginator, { static: true }) |
||||||
pageEvent: PageEvent; |
pageEvent: PageEvent; |
||||||
paginator: MatPaginator; |
paginator: MatPaginator; |
||||||
length:any; //共多少条数据
|
length: any; //共多少条数据
|
||||||
pageSize:any; //每页条数
|
pageSize: any = 10; //每页条数
|
||||||
pageSizeOptions: number[] = [10] //设置每页条数
|
pageNumber: number = 1; //第几页
|
||||||
pageNumber:number = 1; //第几页
|
|
||||||
|
|
||||||
//分页切换
|
//分页切换
|
||||||
chagePage (e) { |
chagePage(e) { |
||||||
this.pageNumber = e.pageIndex+1 |
this.pageNumber = e.pageIndex + 1; |
||||||
let data= { |
this.getAllUsers(); |
||||||
RealName: this.name || '', |
|
||||||
IdentityCard: this.identityCard || '', |
|
||||||
OrganizationId: this.organizationId || '', |
|
||||||
RoleType: '2', |
|
||||||
PageNumber: String(this.pageNumber), |
|
||||||
} |
|
||||||
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) |
|
||||||
}) |
|
||||||
} |
|
||||||
|
|
||||||
//页面初始化 + 查询 + 重置
|
|
||||||
initData () { |
|
||||||
let data= { |
|
||||||
RealName: this.name || '', |
|
||||||
IdentityCard: this.identityCard || '', |
|
||||||
OrganizationId: this.organizationId || '', |
|
||||||
RoleType: '2', |
|
||||||
} |
|
||||||
this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{ |
|
||||||
this.length = data.totalCount |
|
||||||
this.pageSize = data.pageSize |
|
||||||
this.pageEvent.pageIndex = 0 |
|
||||||
this.dataSource = new MatTableDataSource<any>(data.items) |
|
||||||
}) |
|
||||||
} |
} |
||||||
|
|
||||||
//更新当前页数据
|
//更新当前页数据
|
||||||
getAllUsers () { |
getAllUsers() { |
||||||
let data= { |
let data = { |
||||||
RealName: this.name || '', |
RealName: this.name || "", |
||||||
IdentityCard: this.identityCard || '', |
IdentityCard: this.identityCard || "", |
||||||
OrganizationId: this.organizationId || '', |
OrganizationId: this.organizationId || "", |
||||||
RoleType: '2', |
RoleType: "2", |
||||||
PageNumber: String(this.pageNumber), |
PageNumber: String(this.pageNumber), |
||||||
} |
pageSize: this.pageSize, |
||||||
this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{ |
}; |
||||||
this.length = data.totalCount |
this.http.get("/api/ExamUsers", { params: data }).subscribe((data: any) => { |
||||||
this.pageSize = data.pageSize |
this.length = data.totalCount; |
||||||
this.dataSource = new MatTableDataSource<any>(data.items) |
this.pageSize = data.pageSize; |
||||||
}) |
this.dataSource = new MatTableDataSource<any>(data.items); |
||||||
|
}); |
||||||
} |
} |
||||||
|
|
||||||
//清空搜索
|
//清空搜索
|
||||||
empty () { |
empty() { |
||||||
this.name = '', |
this.name = ""; |
||||||
this.identityCard = '', |
this.identityCard = ""; |
||||||
this.organizationId = '', |
this.organizationId = this.loginUserInfo.organizationId; |
||||||
this.organizationName = '', |
this.getAllUsers(); |
||||||
this.initData() |
|
||||||
} |
} |
||||||
|
|
||||||
//创建用户
|
//创建用户
|
||||||
open(){ |
open() { |
||||||
let data = this.treeData |
let data = this.nodes; |
||||||
let dialogRef = this.dialog.open(AddEnterpriserUser,{data}); |
let dialogRef = this.dialog.open(AddEnterpriserUser, { data }); |
||||||
dialogRef.afterClosed().subscribe(data=>{ |
dialogRef.afterClosed().subscribe((data) => { |
||||||
if (data) { |
if (data) { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('创建成功!','确定',config); |
this.snackBar.open("创建成功!", "确定", config); |
||||||
this.getAllUsers() |
this.getAllUsers(); |
||||||
} |
} |
||||||
}); |
}); |
||||||
} |
} |
||||||
|
|
||||||
//编辑企业用户
|
//编辑企业用户
|
||||||
edit (e) { |
edit(e) { |
||||||
let data = {treeData: this.treeData, userData: e} |
let data = { treeData: this.nodes, userData: e }; |
||||||
let dialogRef = this.dialog.open(editenterpriseuser,{data}); |
let dialogRef = this.dialog.open(editenterpriseuser, { data }); |
||||||
dialogRef.afterClosed().subscribe(data=>{ |
dialogRef.afterClosed().subscribe((data) => { |
||||||
if (data) { |
if (data) { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('修改成功!','确定',config);
|
this.snackBar.open("修改成功!", "确定", config); |
||||||
this.getAllUsers() |
this.getAllUsers(); |
||||||
} |
} |
||||||
}); |
}); |
||||||
} |
} |
||||||
|
|
||||||
//重置密码
|
//重置密码
|
||||||
reset (e) { |
reset(e) { |
||||||
this.http.put(`/api/ExamUsers/${e.id}/ResetPassword`,{}).subscribe(data=>{ |
this.http.put(`/api/ExamUsers/${e.id}/ResetPassword`, {}).subscribe( |
||||||
const config = new MatSnackBarConfig(); |
(data) => { |
||||||
config.verticalPosition = 'top'; |
const config = new MatSnackBarConfig(); |
||||||
config.duration = 3000 |
config.verticalPosition = "top"; |
||||||
this.snackBar.open('重置密码成功!','确定',config); |
config.duration = 3000; |
||||||
},err=>{ |
this.snackBar.open("重置密码成功!", "确定", config); |
||||||
const config = new MatSnackBarConfig(); |
}, |
||||||
config.verticalPosition = 'top'; |
(err) => { |
||||||
config.duration = 3000 |
const config = new MatSnackBarConfig(); |
||||||
this.snackBar.open('重置密码失败!','确定',config); |
config.verticalPosition = "top"; |
||||||
}) |
config.duration = 3000; |
||||||
|
this.snackBar.open("重置密码失败!", "确定", config); |
||||||
|
} |
||||||
|
); |
||||||
} |
} |
||||||
|
|
||||||
//启用
|
//启用
|
||||||
enabled (e) { |
enabled(e) { |
||||||
let body = { |
let body = { |
||||||
creationTime: new Date(), |
creationTime: new Date(), |
||||||
enabled: true, |
enabled: true, |
||||||
id: e.id, |
id: e.id, |
||||||
identityCard: e.identityCard, |
identityCard: e.identityCard, |
||||||
name : e.name, |
name: e.name, |
||||||
organizationId: e.organizationId, |
organizationId: e.organizationId, |
||||||
organizationName: e.organizationName, |
organizationName: e.organizationName, |
||||||
phone: e.phone, |
phone: e.phone, |
||||||
realName : e.realName, |
realName: e.realName, |
||||||
roleType : e.roleType, |
roleType: e.roleType, |
||||||
} |
}; |
||||||
this.http.put(`/api/ExamUsers/${e.id}`,body).subscribe(data => { |
this.http.put(`/api/ExamUsers/${e.id}`, body).subscribe((data) => { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000; |
config.duration = 3000; |
||||||
this.snackBar.open('启用成功!','确定',config); |
this.snackBar.open("启用成功!", "确定", config); |
||||||
this.getAllUsers(); |
this.getAllUsers(); |
||||||
}) |
}); |
||||||
} |
} |
||||||
|
|
||||||
//禁用
|
//禁用
|
||||||
noEnabled (e) { |
noEnabled(e) { |
||||||
let body = { |
let body = { |
||||||
creationTime: new Date(), |
creationTime: new Date(), |
||||||
enabled: false, |
enabled: false, |
||||||
id: e.id, |
id: e.id, |
||||||
identityCard: e.identityCard, |
identityCard: e.identityCard, |
||||||
name : e.name, |
name: e.name, |
||||||
organizationId: e.organizationId, |
organizationId: e.organizationId, |
||||||
organizationName: e.organizationName, |
organizationName: e.organizationName, |
||||||
phone: e.phone, |
phone: e.phone, |
||||||
realName : e.realName, |
realName: e.realName, |
||||||
roleType : e.roleType, |
roleType: e.roleType, |
||||||
} |
}; |
||||||
this.http.put(`/api/ExamUsers/${e.id}`,body).subscribe(data => { |
this.http.put(`/api/ExamUsers/${e.id}`, body).subscribe((data) => { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000; |
config.duration = 3000; |
||||||
this.snackBar.open('禁用成功!','确定',config); |
this.snackBar.open("禁用成功!", "确定", config); |
||||||
this.getAllUsers(); |
this.getAllUsers(); |
||||||
}) |
}); |
||||||
} |
} |
||||||
|
|
||||||
//删除
|
//删除
|
||||||
delete (e) { |
delete(e) { |
||||||
let isTrue = confirm('您确定要删除吗') |
let isTrue = confirm("您确定要删除吗"); |
||||||
if (isTrue) { |
if (isTrue) { |
||||||
this.http.delete(`/api/ExamUsers/${e.id}`).subscribe(data=>{ |
this.http.delete(`/api/ExamUsers/${e.id}`).subscribe((data) => { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('删除成功!','确定',config); |
this.snackBar.open("删除成功!", "确定", config); |
||||||
this.getAllUsers() |
this.getAllUsers(); |
||||||
}) |
}); |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//编辑企业用户
|
//编辑企业用户
|
||||||
@Component({ |
@Component({ |
||||||
selector: 'app-editenterpriseuser', |
selector: "app-editenterpriseuser", |
||||||
templateUrl: './editenterpriseuser.html', |
templateUrl: "./editenterpriseuser.html", |
||||||
styleUrls: ['./enterpriseuser.component.scss'] |
styleUrls: ["./enterpriseuser.component.scss"], |
||||||
}) |
}) |
||||||
export class editenterpriseuser { |
export class editenterpriseuser { |
||||||
|
constructor( |
||||||
constructor(private http: HttpClient,public dialogRef: MatDialogRef<editenterpriseuser>,@Inject(MAT_DIALOG_DATA) public data,public snackBar: MatSnackBar,) {} |
private http: HttpClient, |
||||||
|
public dialogRef: MatDialogRef<editenterpriseuser>, |
||||||
|
@Inject(MAT_DIALOG_DATA) public data, |
||||||
|
public snackBar: MatSnackBar |
||||||
|
) {} |
||||||
|
|
||||||
ngOnInit(): void { |
ngOnInit(): void { |
||||||
this.dataSource.data = this.data.treeData |
this.dataSource.data = this.data.treeData; |
||||||
this.realName = JSON.parse(JSON.stringify(this.data.userData.realName)) |
this.realName = JSON.parse(JSON.stringify(this.data.userData.realName)); |
||||||
this.identityCard = JSON.parse(JSON.stringify(this.data.userData.identityCard)) |
this.identityCard = JSON.parse( |
||||||
this.phone = JSON.parse(JSON.stringify(this.data.userData.phone)) |
JSON.stringify(this.data.userData.identityCard) |
||||||
this.organizationId = JSON.parse(JSON.stringify(this.data.userData.organizationId)) |
); |
||||||
this.organizationName = JSON.parse(JSON.stringify(this.data.userData.organizationName)) |
this.phone = JSON.parse(JSON.stringify(this.data.userData.phone)); |
||||||
|
this.organizationId = JSON.parse( |
||||||
|
JSON.stringify(this.data.userData.organizationId) |
||||||
|
); |
||||||
|
this.organizationName = JSON.parse( |
||||||
|
JSON.stringify(this.data.userData.organizationName) |
||||||
|
); |
||||||
} |
} |
||||||
|
|
||||||
errmsg:string = null; //捕获错误信息
|
errmsg: string = null; //捕获错误信息
|
||||||
|
|
||||||
realName:string = null; |
realName: string = null; |
||||||
identityCard:string = null; |
identityCard: string = null; |
||||||
phone:number = null; |
phone: number = null; |
||||||
organizationId:string = null; |
organizationId: string = null; |
||||||
organizationName:string = null; |
organizationName: string = null; |
||||||
|
|
||||||
private _transformer = (node, level: number) => { //初始化tree
|
private _transformer = (node, level: number) => { |
||||||
|
//初始化tree
|
||||||
return { |
return { |
||||||
expandable: !!node.children && node.children.length > 0, |
expandable: !!node.children && node.children.length > 0, |
||||||
name: node.name, |
name: node.name, |
||||||
level: level, |
level: level, |
||||||
id: node.id, |
id: node.id, |
||||||
parentId: node.parentId, |
parentId: node.parentId, |
||||||
children: node.children |
children: node.children, |
||||||
}; |
}; |
||||||
} |
}; |
||||||
treeControl = new FlatTreeControl<any>(node => node.level, node => node.expandable); |
treeControl = new FlatTreeControl<any>( |
||||||
treeFlattener = new MatTreeFlattener(this._transformer, node => node.level, node => node.expandable, node => node.children); |
(node) => node.level, |
||||||
|
(node) => node.expandable |
||||||
|
); |
||||||
|
treeFlattener = new MatTreeFlattener( |
||||||
|
this._transformer, |
||||||
|
(node) => node.level, |
||||||
|
(node) => node.expandable, |
||||||
|
(node) => node.children |
||||||
|
); |
||||||
dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); |
dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); |
||||||
hasChild = (_: number, node: any) => node.expandable; |
hasChild = (_: number, node: any) => node.expandable; |
||||||
|
|
||||||
//选择tree节点
|
//选择tree节点
|
||||||
selectTree (e) { |
selectTree(e) { |
||||||
this.organizationId = e.id |
this.organizationId = e.id; |
||||||
this.organizationName = e.name |
this.organizationName = e.name; |
||||||
} |
} |
||||||
|
|
||||||
//提交创建表单
|
//提交创建表单
|
||||||
onSubmit (e) { |
onSubmit(e) { |
||||||
console.log(666,e) |
console.log(666, e); |
||||||
if (this.organizationId && this.organizationName) { |
if (this.organizationId && this.organizationName) { |
||||||
e.phone = String(e.phone) |
e.phone = String(e.phone); |
||||||
e.roleType = 2 |
e.roleType = 2; |
||||||
// e.name = this.data.userData.name
|
// e.name = this.data.userData.name
|
||||||
e.id = this.data.userData.id |
e.id = this.data.userData.id; |
||||||
e.enabled = this.data.userData.enabled |
e.enabled = this.data.userData.enabled; |
||||||
// e.creationTime = new Date()
|
// e.creationTime = new Date()
|
||||||
e.organizationId = this.organizationId |
e.organizationId = this.organizationId; |
||||||
e.organizationName = this.organizationName |
e.organizationName = this.organizationName; |
||||||
this.http.put(`/api/ExamUsers/${this.data.userData.id}`,e).subscribe(data => { |
this.http.put(`/api/ExamUsers/${this.data.userData.id}`, e).subscribe( |
||||||
this.dialogRef.close('success'); |
(data) => { |
||||||
},err => { |
this.dialogRef.close("success"); |
||||||
const config = new MatSnackBarConfig(); |
}, |
||||||
config.verticalPosition = 'top'; |
(err) => { |
||||||
config.duration = 3000 |
const config = new MatSnackBarConfig(); |
||||||
this.snackBar.open(err,'确定',config); |
config.verticalPosition = "top"; |
||||||
}) |
config.duration = 3000; |
||||||
|
this.snackBar.open(err, "确定", config); |
||||||
|
} |
||||||
|
); |
||||||
} else { |
} else { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('请选择消防救援站','确定',config);
|
this.snackBar.open("请选择消防救援站", "确定", config); |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//查看企业用户
|
|
||||||
@Component({ |
|
||||||
selector: 'app-seeenterpriseuser', |
|
||||||
templateUrl: './seeenterpriseuser.html', |
|
||||||
styleUrls: ['./enterpriseuser.component.scss'] |
|
||||||
}) |
|
||||||
export class seeenterpriseuser { |
|
||||||
|
|
||||||
constructor(public http: HttpClient,public dialog: MatDialog, |
|
||||||
@Inject(MAT_DIALOG_DATA) public data) { } |
|
||||||
|
|
||||||
ngOnInit() {} |
|
||||||
|
|
||||||
} |
|
@ -1,328 +1,294 @@ |
|||||||
import { Component, OnInit, ViewChild, Inject } from '@angular/core'; |
import { Component, OnInit, ViewChild, Inject } from "@angular/core"; |
||||||
import {HttpClient} from '@angular/common/http' |
import { HttpClient } from "@angular/common/http"; |
||||||
import { MatDialogRef, MatDialog, MAT_DIALOG_DATA } from '@angular/material/dialog'; |
import { |
||||||
import { MatPaginator } from '@angular/material/paginator'; |
MatDialogRef, |
||||||
import { MatTableDataSource } from '@angular/material/table'; |
MatDialog, |
||||||
import { PageEvent } from '@angular/material/paginator'; |
MAT_DIALOG_DATA, |
||||||
import { AddTeacher } from './addenterpriseuser.component' |
} from "@angular/material/dialog"; |
||||||
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; |
import { MatPaginator } from "@angular/material/paginator"; |
||||||
import {FormControl} from '@angular/forms'; |
import { MatTableDataSource } from "@angular/material/table"; |
||||||
import { FlatTreeControl } from '@angular/cdk/tree'; |
import { PageEvent } from "@angular/material/paginator"; |
||||||
import { MatTreeFlatDataSource, MatTreeFlattener } from '@angular/material/tree'; |
import { AddTeacher } from "./addenterpriseuser.component"; |
||||||
|
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar"; |
||||||
|
import { FormControl } from "@angular/forms"; |
||||||
|
import { FlatTreeControl } from "@angular/cdk/tree"; |
||||||
|
import { |
||||||
|
MatTreeFlatDataSource, |
||||||
|
MatTreeFlattener, |
||||||
|
} from "@angular/material/tree"; |
||||||
|
import { TreeService } from "src/app/http-interceptors/tree.service"; |
||||||
|
|
||||||
@Component({ |
@Component({ |
||||||
selector: 'app-enterpriseuser', |
selector: "app-enterpriseuser", |
||||||
templateUrl: './enterpriseuser.component.html', |
templateUrl: "./enterpriseuser.component.html", |
||||||
styleUrls: ['./enterpriseuser.component.scss'] |
styleUrls: ["./enterpriseuser.component.scss"], |
||||||
}) |
}) |
||||||
export class TeacherManagementComponent implements OnInit { |
export class TeacherManagementComponent implements OnInit { |
||||||
|
constructor( |
||||||
constructor(public http: HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar) { } |
public http: HttpClient, |
||||||
|
public dialog: MatDialog, |
||||||
|
public snackBar: MatSnackBar, |
||||||
|
public treeService: TreeService |
||||||
|
) {} |
||||||
|
|
||||||
|
loginUserInfo; |
||||||
ngOnInit() { |
ngOnInit() { |
||||||
this.initData() |
this.loginUserInfo = JSON.parse(sessionStorage.getItem("creatorData")); |
||||||
this.getOrganizations() |
this.getOrganizations(); |
||||||
} |
} |
||||||
|
name: any; //用户姓名
|
||||||
allOrganizations:any; //所有组织机构
|
identityCard: any; //用户账号
|
||||||
treeData:any = []; //tree型 data
|
organizationId; |
||||||
isShowTree:boolean = false; //树形结构是否展示
|
allOrganizations: any; //所有组织机构
|
||||||
showTree () { this.isShowTree = true } |
nodes = []; |
||||||
hideTree () { this.isShowTree = false } |
|
||||||
|
|
||||||
//获取所有组织机构
|
//获取所有组织机构
|
||||||
getOrganizations () { |
getOrganizations() { |
||||||
this.http.get('/api/Organizations').subscribe((data:any)=>{ |
this.http |
||||||
this.allOrganizations = data |
.get("/api/Organizations", { |
||||||
data.forEach(element => { |
params: { |
||||||
element.children = [] |
strict: "true", |
||||||
data.forEach(item => { item.parentId === element.id? element.children.push(item) : null }); |
}, |
||||||
}); |
}) |
||||||
data.forEach(element => { |
.subscribe((data: any) => { |
||||||
!element.parentId? this.treeData.push(element) : null |
this.allOrganizations = data; |
||||||
|
this.allOrganizations.forEach((element) => { |
||||||
|
if (element.id === this.loginUserInfo.organizationId) { |
||||||
|
element.parentId = null; |
||||||
|
} |
||||||
|
}); |
||||||
|
this.nodes = [...this.treeService.toTree(this.allOrganizations)]; |
||||||
|
this.organizationId = this.loginUserInfo.organizationId; |
||||||
|
this.getAllUsers(); |
||||||
}); |
}); |
||||||
this.dataSources.data = this.treeData |
|
||||||
}) //http
|
|
||||||
} |
} |
||||||
|
|
||||||
organizationId:string = null; |
displayedColumns: string[] = [ |
||||||
organizationName:string = null; |
"identitycard", |
||||||
|
"name", |
||||||
|
"post", |
||||||
|
"time", |
||||||
|
"operation", |
||||||
|
]; |
||||||
|
|
||||||
private _transformer = (node, level: number) => { //初始化tree
|
dataSource: any; //所有企业用户表格数据
|
||||||
return { |
//更新当前页数据
|
||||||
expandable: !!node.children && node.children.length > 0, |
pageNumber: number = 1; //第几页
|
||||||
name: node.name, |
pageSize: any = "10"; //每页条数
|
||||||
level: level, |
getAllUsers() { |
||||||
id: node.id, |
let data = { |
||||||
parentId: node.parentId, |
Name: this.identityCard || "", |
||||||
children: node.children |
RealName: this.name || "", |
||||||
|
OrganizationId: this.organizationId || "", |
||||||
|
RoleType: "1", |
||||||
|
PageNumber: String(this.pageNumber), |
||||||
|
PageSize: this.pageSize, |
||||||
}; |
}; |
||||||
|
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); |
||||||
|
}); |
||||||
} |
} |
||||||
treeControl = new FlatTreeControl<any>(node => node.level, node => node.expandable); |
|
||||||
treeFlattener = new MatTreeFlattener(this._transformer, node => node.level, node => node.expandable, node => node.children); |
|
||||||
dataSources = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); |
|
||||||
hasChild = (_: number, node: any) => node.expandable; |
|
||||||
|
|
||||||
//选择tree节点
|
|
||||||
selectTree (e) { |
|
||||||
this.organizationId = e.id |
|
||||||
this.organizationName = e.name |
|
||||||
this.isShowTree = false |
|
||||||
} |
|
||||||
|
|
||||||
displayedColumns: string[] = ['identitycard', 'name', 'post', 'time', 'operation',]; |
|
||||||
dataSource:any; //所有企业用户
|
|
||||||
|
|
||||||
name:any //用户姓名
|
|
||||||
identityCard:any //用户账号
|
|
||||||
|
|
||||||
//分页
|
//分页
|
||||||
@ViewChild(MatPaginator, {static: true})
|
@ViewChild(MatPaginator, { static: true }) |
||||||
pageEvent: PageEvent; |
pageEvent: PageEvent; |
||||||
paginator: MatPaginator; |
paginator: MatPaginator; |
||||||
length:any; //共多少条数据
|
length: any; //共多少条数据
|
||||||
pageSize:any; //每页条数
|
|
||||||
pageSizeOptions: number[] = [10] //设置每页条数
|
|
||||||
pageNumber:number = 1; //第几页
|
|
||||||
|
|
||||||
//分页切换
|
//分页切换
|
||||||
chagePage (e) { |
chagePage(e) { |
||||||
this.pageNumber = e.pageIndex+1 |
this.pageNumber = e.pageIndex + 1; |
||||||
let data= { |
this.getAllUsers(); |
||||||
name: this.identityCard || '', |
|
||||||
realName: this.name || '', |
|
||||||
OrganizationId: this.organizationId || '', |
|
||||||
RoleType: '1', |
|
||||||
PageNumber: String(this.pageNumber), |
|
||||||
} |
|
||||||
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) |
|
||||||
}) |
|
||||||
} |
|
||||||
|
|
||||||
//页面初始化 + 查询 + 重置
|
|
||||||
initData () { |
|
||||||
let data= { |
|
||||||
name: this.identityCard || '', |
|
||||||
realName: this.name || '', |
|
||||||
OrganizationId: this.organizationId || '', |
|
||||||
RoleType: '1', |
|
||||||
} |
|
||||||
this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{ |
|
||||||
this.length = data.totalCount |
|
||||||
this.pageSize = data.pageSize |
|
||||||
this.pageEvent.pageIndex = 0 |
|
||||||
this.dataSource = new MatTableDataSource<any>(data.items) |
|
||||||
}) |
|
||||||
} |
|
||||||
|
|
||||||
//更新当前页数据
|
|
||||||
getAllUsers () { |
|
||||||
let data= { |
|
||||||
name: this.identityCard || '', |
|
||||||
realName: this.name || '', |
|
||||||
OrganizationId: this.organizationId || '', |
|
||||||
RoleType: '1', |
|
||||||
PageNumber: String(this.pageNumber), |
|
||||||
} |
|
||||||
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) |
|
||||||
}) |
|
||||||
} |
} |
||||||
|
|
||||||
//清空搜索
|
//清空搜索
|
||||||
empty () { |
empty() { |
||||||
this.name = '', |
this.pageNumber = 1; |
||||||
this.identityCard = '', |
this.name = ""; |
||||||
this.organizationId = '', |
this.identityCard = ""; |
||||||
this.organizationName = '', |
this.organizationId = this.loginUserInfo.organizationId; |
||||||
this.initData() |
this.getAllUsers(); |
||||||
} |
} |
||||||
|
|
||||||
//创建教员
|
//创建教员
|
||||||
open(){ |
open() { |
||||||
let data = this.treeData |
let data = this.nodes; |
||||||
let dialogRef = this.dialog.open(AddTeacher,{data}); |
let dialogRef = this.dialog.open(AddTeacher, { data }); |
||||||
dialogRef.afterClosed().subscribe(data=>{ |
dialogRef.afterClosed().subscribe((data) => { |
||||||
if (data) { |
if (data) { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('创建成功!','确定',config); |
this.snackBar.open("创建成功!", "确定", config); |
||||||
this.getAllUsers() |
this.getAllUsers(); |
||||||
} |
} |
||||||
}); |
}); |
||||||
} |
} |
||||||
|
|
||||||
//编辑企业用户
|
//编辑企业用户
|
||||||
edit (e) { |
edit(e) { |
||||||
let data = {treeData: this.treeData, userData: e} |
let data = { treeData: this.nodes, userData: e }; |
||||||
let dialogRef = this.dialog.open(editTeacher,{data}); |
let dialogRef = this.dialog.open(editTeacher, { data }); |
||||||
dialogRef.afterClosed().subscribe(data=>{ |
dialogRef.afterClosed().subscribe((data) => { |
||||||
if (data) { |
if (data) { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('修改成功!','确定',config);
|
this.snackBar.open("修改成功!", "确定", config); |
||||||
this.getAllUsers() |
this.getAllUsers(); |
||||||
} |
} |
||||||
}); |
}); |
||||||
} |
} |
||||||
|
|
||||||
//重置密码
|
//重置密码
|
||||||
reset (e) { |
reset(e) { |
||||||
this.http.put(`/api/ExamUsers/${e.id}/ResetPassword`,{}).subscribe( |
this.http.put(`/api/ExamUsers/${e.id}/ResetPassword`, {}).subscribe( |
||||||
data=>{ |
(data) => { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('重置密码成功!','确定',config); |
this.snackBar.open("重置密码成功!", "确定", config); |
||||||
},err=>{ |
}, |
||||||
|
(err) => { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('重置密码失败!','确定',config); |
this.snackBar.open("重置密码失败!", "确定", config); |
||||||
}) |
} |
||||||
|
); |
||||||
} |
} |
||||||
|
|
||||||
//启用
|
//启用
|
||||||
enabled (e) { |
enabled(e) { |
||||||
e.date = new Date() |
e.date = new Date(); |
||||||
e.enabled = true |
e.enabled = true; |
||||||
this.http.put(`/api/ExamUsers/${e.id}`,e).subscribe(data => { |
this.http.put(`/api/ExamUsers/${e.id}`, e).subscribe((data) => { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000; |
config.duration = 3000; |
||||||
this.snackBar.open('启用成功!','确定',config); |
this.snackBar.open("启用成功!", "确定", config); |
||||||
this.getAllUsers(); |
this.getAllUsers(); |
||||||
}) |
}); |
||||||
} |
} |
||||||
|
|
||||||
//禁用
|
//禁用
|
||||||
noEnabled (e) { |
noEnabled(e) { |
||||||
e.date = new Date() |
e.date = new Date(); |
||||||
e.enabled = false |
e.enabled = false; |
||||||
this.http.put(`/api/ExamUsers/${e.id}`,e).subscribe(data => { |
this.http.put(`/api/ExamUsers/${e.id}`, e).subscribe((data) => { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000; |
config.duration = 3000; |
||||||
this.snackBar.open('禁用成功!','确定',config); |
this.snackBar.open("禁用成功!", "确定", config); |
||||||
this.getAllUsers(); |
this.getAllUsers(); |
||||||
}) |
}); |
||||||
} |
} |
||||||
|
|
||||||
//删除
|
//删除
|
||||||
delete (e) { |
delete(e) { |
||||||
let isTrue = confirm('您确定要删除吗') |
let isTrue = confirm("您确定要删除吗"); |
||||||
if (isTrue) { |
if (isTrue) { |
||||||
this.http.delete(`/api/ExamUsers/${e.id}`).subscribe(data=>{ |
this.http.delete(`/api/ExamUsers/${e.id}`).subscribe((data) => { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('删除成功!','确定',config); |
this.snackBar.open("删除成功!", "确定", config); |
||||||
this.getAllUsers() |
this.getAllUsers(); |
||||||
}) |
}); |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//编辑企业用户
|
//编辑企业用户
|
||||||
@Component({ |
@Component({ |
||||||
selector: 'app-editenterpriseuser', |
selector: "app-editenterpriseuser", |
||||||
templateUrl: './editenterpriseuser.html', |
templateUrl: "./editenterpriseuser.html", |
||||||
styleUrls: ['./enterpriseuser.component.scss'] |
styleUrls: ["./enterpriseuser.component.scss"], |
||||||
}) |
}) |
||||||
export class editTeacher { |
export class editTeacher { |
||||||
|
constructor( |
||||||
constructor(private http: HttpClient,public dialogRef: MatDialogRef<editTeacher>,@Inject(MAT_DIALOG_DATA) public data,public snackBar: MatSnackBar,) {} |
private http: HttpClient, |
||||||
|
public dialogRef: MatDialogRef<editTeacher>, |
||||||
|
@Inject(MAT_DIALOG_DATA) public data, |
||||||
|
public snackBar: MatSnackBar |
||||||
|
) {} |
||||||
|
|
||||||
ngOnInit(): void { |
ngOnInit(): void { |
||||||
this.dataSource.data = this.data.treeData |
this.dataSource.data = this.data.treeData; |
||||||
this.name = JSON.parse(JSON.stringify(this.data.userData.name)) |
this.name = JSON.parse(JSON.stringify(this.data.userData.name)); |
||||||
this.realName = JSON.parse(JSON.stringify(this.data.userData.realName)) |
this.realName = JSON.parse(JSON.stringify(this.data.userData.realName)); |
||||||
this.organizationId = JSON.parse(JSON.stringify(this.data.userData.organizationId)) |
this.organizationId = JSON.parse( |
||||||
this.organizationName = JSON.parse(JSON.stringify(this.data.userData.organizationName)) |
JSON.stringify(this.data.userData.organizationId) |
||||||
|
); |
||||||
|
this.organizationName = JSON.parse( |
||||||
|
JSON.stringify(this.data.userData.organizationName) |
||||||
|
); |
||||||
} |
} |
||||||
|
|
||||||
errmsg:string = null; //捕获错误信息
|
errmsg: string = null; //捕获错误信息
|
||||||
|
|
||||||
name:string = null; |
name: string = null; |
||||||
realName:string = null; |
realName: string = null; |
||||||
organizationId:string = null; |
organizationId: string = null; |
||||||
organizationName:string = null; |
organizationName: string = null; |
||||||
|
|
||||||
private _transformer = (node, level: number) => { //初始化tree
|
private _transformer = (node, level: number) => { |
||||||
|
//初始化tree
|
||||||
return { |
return { |
||||||
expandable: !!node.children && node.children.length > 0, |
expandable: !!node.children && node.children.length > 0, |
||||||
name: node.name, |
name: node.name, |
||||||
level: level, |
level: level, |
||||||
id: node.id, |
id: node.id, |
||||||
parentId: node.parentId, |
parentId: node.parentId, |
||||||
children: node.children |
children: node.children, |
||||||
}; |
}; |
||||||
} |
}; |
||||||
treeControl = new FlatTreeControl<any>(node => node.level, node => node.expandable); |
treeControl = new FlatTreeControl<any>( |
||||||
treeFlattener = new MatTreeFlattener(this._transformer, node => node.level, node => node.expandable, node => node.children); |
(node) => node.level, |
||||||
|
(node) => node.expandable |
||||||
|
); |
||||||
|
treeFlattener = new MatTreeFlattener( |
||||||
|
this._transformer, |
||||||
|
(node) => node.level, |
||||||
|
(node) => node.expandable, |
||||||
|
(node) => node.children |
||||||
|
); |
||||||
dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); |
dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); |
||||||
hasChild = (_: number, node: any) => node.expandable; |
hasChild = (_: number, node: any) => node.expandable; |
||||||
|
|
||||||
//选择tree节点
|
//选择tree节点
|
||||||
selectTree (e) { |
selectTree(e) { |
||||||
this.organizationId = e.id |
this.organizationId = e.id; |
||||||
this.organizationName = e.name |
this.organizationName = e.name; |
||||||
} |
} |
||||||
|
|
||||||
//提交创建表单
|
//提交创建表单
|
||||||
onSubmit (e) { |
onSubmit(e) { |
||||||
if (this.organizationId && this.organizationName) { |
if (this.organizationId && this.organizationName) { |
||||||
e.phone = this.data.userData.phone |
e.phone = this.data.userData.phone; |
||||||
e.identityCard = this.data.userData.identityCard |
e.identityCard = this.data.userData.identityCard; |
||||||
e.roleType = 1 |
e.roleType = 1; |
||||||
e.id = this.data.userData.id |
e.id = this.data.userData.id; |
||||||
e.enabled = this.data.userData.enabled |
e.enabled = this.data.userData.enabled; |
||||||
e.creationTime = new Date() |
e.creationTime = new Date(); |
||||||
e.organizationId = this.organizationId |
e.organizationId = this.organizationId; |
||||||
e.organizationName = this.organizationName |
e.organizationName = this.organizationName; |
||||||
this.http.put(`/api/ExamUsers/${this.data.userData.id}`,e).subscribe(data => { |
this.http.put(`/api/ExamUsers/${this.data.userData.id}`, e).subscribe( |
||||||
this.dialogRef.close('success'); |
(data) => { |
||||||
},err => { |
this.dialogRef.close("success"); |
||||||
const config = new MatSnackBarConfig(); |
}, |
||||||
config.verticalPosition = 'top'; |
(err) => { |
||||||
config.duration = 3000 |
const config = new MatSnackBarConfig(); |
||||||
this.snackBar.open(err,'确定',config); |
config.verticalPosition = "top"; |
||||||
}) |
config.duration = 3000; |
||||||
|
this.snackBar.open(err, "确定", config); |
||||||
|
} |
||||||
|
); |
||||||
} else { |
} else { |
||||||
const config = new MatSnackBarConfig(); |
const config = new MatSnackBarConfig(); |
||||||
config.verticalPosition = 'top'; |
config.verticalPosition = "top"; |
||||||
config.duration = 3000 |
config.duration = 3000; |
||||||
this.snackBar.open('请选择消防救援站','确定',config);
|
this.snackBar.open("请选择消防救援站", "确定", config); |
||||||
} |
} |
||||||
} |
} |
||||||
|
|
||||||
} |
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//查看企业用户
|
|
||||||
@Component({ |
|
||||||
selector: 'app-seeenterpriseuser', |
|
||||||
templateUrl: './seeenterpriseuser.html', |
|
||||||
styleUrls: ['./enterpriseuser.component.scss'] |
|
||||||
}) |
|
||||||
export class seeTeacher { |
|
||||||
|
|
||||||
constructor(public http: HttpClient,public dialog: MatDialog, |
|
||||||
@Inject(MAT_DIALOG_DATA) public data) { } |
|
||||||
|
|
||||||
ngOnInit() {} |
|
||||||
|
|
||||||
} |
|
@ -1,14 +1,15 @@ |
|||||||
import { Routes, RouterModule } from '@angular/router'; |
import { Routes, RouterModule } from "@angular/router"; |
||||||
import { NgModule } from '@angular/core'; |
import { NgModule } from "@angular/core"; |
||||||
import { TeacherManagementComponent } from './teacherManagement/enterpriseuser.component'; |
import { TeacherManagementComponent } from "./teacherManagement/enterpriseuser.component"; |
||||||
import { EnterpriseuserComponent } from './enterpriseuser/enterpriseuser.component'; |
import { EnterpriseuserComponent } from "./enterpriseuser/enterpriseuser.component"; |
||||||
|
import { AdministratorsComponent } from "./administrators/administrators.component"; |
||||||
const routes: Routes = [ |
const routes: Routes = [ |
||||||
{ path: 'teachear', component:TeacherManagementComponent }, //管理员 教员页面
|
{ path: "teachear", component: TeacherManagementComponent }, //管理员 教员页面
|
||||||
{ path: 'examinee', component:EnterpriseuserComponent }, //管理员 考生页面
|
{ path: "examinee", component: EnterpriseuserComponent }, //管理员 考生页面
|
||||||
] |
{ path: "admin", component: AdministratorsComponent }, //管理员 考生页面
|
||||||
|
]; |
||||||
@NgModule({ |
@NgModule({ |
||||||
imports: [RouterModule.forChild(routes)], |
imports: [RouterModule.forChild(routes)], |
||||||
exports: [RouterModule] |
exports: [RouterModule], |
||||||
}) |
}) |
||||||
export class UiRoutingModule {} |
export class UiRoutingModule {} |
||||||
|
Loading…
Reference in new issue