Browse Source

[完善] 登录接口完善, 编制工具完善

master
陈鹏飞 4 years ago
parent
commit
2ada0ec2dd
  1. 2
      src/app/pages/lockscreen/lockscreen.component.html
  2. 2
      src/app/pages/login/login.component.ts
  3. 41
      src/app/ui/collection-tools/collection-tools.component.html
  4. 162
      src/app/ui/collection-tools/collection-tools.component.scss
  5. 1
      src/app/ui/collection-tools/collection-tools.component.ts
  6. 7
      src/app/ui/collection-tools/panel.scss
  7. 44
      src/app/ui/enterpriseuser/enterpriseuser.component.ts
  8. 30
      src/app/ui/teacherManagement/enterpriseuser.component.ts

2
src/app/pages/lockscreen/lockscreen.component.html

@ -14,7 +14,7 @@
<div class="input" style="margin-bottom: 50px;"> <div class="input" style="margin-bottom: 50px;">
<label class="role" [ngClass]="{'isCheck': roleType=='1'}" (click)='toggle(1)'>考官</label> <label class="role" [ngClass]="{'isCheck': roleType=='1'}" (click)='toggle(1)'>考官</label>
<label class="role" [ngClass]="{'isCheck': roleType=='0'}" (click)='toggle(0)'>考生</label> <label class="role" [ngClass]="{'isCheck': roleType=='2'}" (click)='toggle(2)'>考生</label>
</div> </div>
<div class="input"> <div class="input">

2
src/app/pages/login/login.component.ts

@ -27,7 +27,7 @@ export class LoginComponent implements OnInit {
//登录 //登录
onSubmit(e){ onSubmit(e){
let params = { roleType: '2' } let params = { roleType: '0' }
this.http.post('/api/ExamAccounts/SignIn',e,{params}).subscribe((data:any)=>{ this.http.post('/api/ExamAccounts/SignIn',e,{params}).subscribe((data:any)=>{
sessionStorage.setItem("realName",data.realName); sessionStorage.setItem("realName",data.realName);
sessionStorage.setItem("roleType",data.roleType); sessionStorage.setItem("roleType",data.roleType);

41
src/app/ui/collection-tools/collection-tools.component.html

@ -1,7 +1,14 @@
<div class="content"> <div class="content">
<!-- header头部 --> <!-- header头部 -->
<div class="header"> <div class="header">
<div class="headerTitle">富丽华大酒店</div>
<div class="headerCenter"> <input type="text" placeholder="请输入考试要点"> </div>
<div class="headerRight">
<label class="fraction">总分<input type="text"></label>
<button style="border: 1px solid #07CDCF; border-radius: 5px; margin: 0 15px;"><mat-icon>visibility</mat-icon>消防设施考题设定</button>
<button (click)="saveSite()"><mat-icon>description</mat-icon>保存</button>
<button><mat-icon>open_in_browser</mat-icon>上传</button>
</div>
</div> </div>
<!-- header头部 --> <!-- header头部 -->
<!--功能区 --> <!--功能区 -->
@ -10,6 +17,22 @@
<!-- H5Canvas --> <!-- H5Canvas -->
<app-working-area #canvas [init]='this'></app-working-area> <app-working-area #canvas [init]='this'></app-working-area>
<!-- H5Canvas --> <!-- H5Canvas -->
<div class="centerBuildingDiv" style="user-select: none;" cdkDrag>
<div class="centerTotal">
<div class="centerTotalHeader"><mat-icon cdkDragHandle matTooltip="可移动窗口" matTooltipPosition="above">open_with</mat-icon>建筑总平面图</div>
<div class="everyTotal" (click)="checkedBuilding({name:'总平面图'},-1)" [ngClass]="{'buildingbtnchecked': checkedBuildingIndex==-1}">总平面图</div>
<div class="everyTotal overflowText" *ngFor="let item of allBuildings;let key = index" (click)="checkedBuilding(item,key)"[ngClass]="{'buildingbtnchecked': checkedBuildingIndex==key}">
{{item.name}}
</div>
</div>
<div style="flex: 2%;opacity: 0;"></div>
<div class="centerTotal">
<div class="everyTotal overflowText" *ngFor="let item of sitePlanData;let key = index"
[ngClass]="{'isRefugeStorey':item.isRefugeStorey==true,'selectSitePlan': selectSitePlanIndex==key}" (click)='selectSitePlan(item,key)'>
{{item.name}}
</div>
</div>
</div>
<div id="leftDiv" class='functionalDomainLeft publicCss scenarioAssignment' [ngClass]="{'togglePanel': toggleExpandPanel==true}" style="user-select: none;"> <div id="leftDiv" class='functionalDomainLeft publicCss scenarioAssignment' [ngClass]="{'togglePanel': toggleExpandPanel==true}" style="user-select: none;">
<!-- 处置预案 --> <!-- 处置预案 -->
@ -43,7 +66,7 @@
<!-- 处置预案 --> <!-- 处置预案 -->
<!-- 素材库 --> <!-- 素材库 -->
<div id="materialBank" *ngIf="isEditPattern" [ngClass]="{'selectEditMode': pattern}"> <div id="materialBank">
<div class="planarGraphHeader" (click)='toggleMaterial()'> <div class="planarGraphHeader" (click)='toggleMaterial()'>
<mat-icon *ngIf="toggleMaterialBank">keyboard_arrow_up</mat-icon> <mat-icon *ngIf="toggleMaterialBank">keyboard_arrow_up</mat-icon>
<mat-icon *ngIf="!toggleMaterialBank">keyboard_arrow_down</mat-icon> <mat-icon *ngIf="!toggleMaterialBank">keyboard_arrow_down</mat-icon>
@ -81,16 +104,16 @@
<!-- 消防列表树 --> <!-- 消防列表树 -->
<mat-tree [dataSource]="dataSource" [treeControl]="treeControl" cdkDropList [cdkDropListData]="dataSource" (cdkDropListDropped)="drop($event)"> <mat-tree [dataSource]="dataSource" [treeControl]="treeControl" cdkDropList [cdkDropListData]="dataSource" (cdkDropListDropped)="drop($event)">
<mat-tree-node cdkDrag cdkDragDisabled="false" [ngClass]="{'isLookPattern': !node.isLookPattern && !isEditPattern}" *matTreeNodeDef="let node;" matTreeNodePadding cdkTreeNodePaddingIndent='26' (click)="clickTreeNode(node)" class="treeNode"> <mat-tree-node cdkDrag cdkDragDisabled="false" [ngClass]="{'isLookPattern': !node.isLookPattern}" *matTreeNodeDef="let node;" matTreeNodePadding cdkTreeNodePaddingIndent='26' (click)="clickTreeNode(node)" class="treeNode">
<button mat-icon-button disabled></button> <button mat-icon-button disabled></button>
<span title="{{node.name}}" [ngClass]="{'treeText': !node.isTemplate}"> <span title="{{node.name}}" [ngClass]="{'treeText': !node.isTemplate}">
{{node.name}} {{node.name}}
</span> </span>
<span *ngIf="node.isTemplate">({{node.children.length}})</span> <span *ngIf="node.isTemplate">({{node.children.length}})</span>
<span class="isLookCss" (click)="clickLookItem(node)"><mat-icon [ngClass]="{'icongray': node.isLook == false}">visibility</mat-icon></span> <span class="isLookCss" (click)="clickLookItem(node)"><mat-icon [ngClass]="{'icongray': node.isLook == false}">check_circle_outline</mat-icon></span>
</mat-tree-node> </mat-tree-node>
<mat-tree-node cdkDrag cdkDragDisabled="false" [ngClass]="{'isLookPattern': !node.isLookPattern && !isEditPattern}" *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding (click)="clickTreeNode(node)"class="treeNode" > <mat-tree-node cdkDrag cdkDragDisabled="false" [ngClass]="{'isLookPattern': !node.isLookPattern}" *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding (click)="clickTreeNode(node)"class="treeNode" >
<button mat-icon-button <button mat-icon-button
matTreeNodeToggle matTreeNodeToggle
[attr.aria-label]="'toggle ' + node.name"> [attr.aria-label]="'toggle ' + node.name">
@ -102,7 +125,7 @@
{{node.name}} {{node.name}}
</span> </span>
<span *ngIf="node.isTemplate && node.isNewElement">({{node.children.length}})</span> <span *ngIf="node.isTemplate && node.isNewElement">({{node.children.length}})</span>
<span class="isLookCss" (click)="clickLookItem(node)"><mat-icon [ngClass]="{'icongray': node.isLook == false}">visibility</mat-icon></span> <span class="isLookCss" (click)="clickLookItem(node)"><mat-icon [ngClass]="{'icongray': node.isLook == false}">check_circle_outline</mat-icon></span>
</mat-tree-node> </mat-tree-node>
</mat-tree> </mat-tree>
@ -118,11 +141,7 @@
<div style="width: 3px;height: 100%;position: absolute;left: 0;cursor: e-resize;z-index: 1000;" (mousedown)="rightDivMouseDown($event)"></div> <div style="width: 3px;height: 100%;position: absolute;left: 0;cursor: e-resize;z-index: 1000;" (mousedown)="rightDivMouseDown($event)"></div>
<!-- 属性 --> <!-- 属性 -->
<div [ngClass]="{'forbidden': !isEditPattern}" id="property" class="property" style="height: 100%;background-color: white;"> <div [ngClass]="{'forbidden': !isEditPattern}" id="property" class="property" style="height: 100%;background-color: white;">
<div class="title"> <div class="titleS"><mat-icon>info</mat-icon>属性</div>
<div>
<span style="user-select: none">属性</span>
</div>
</div>
<!-- 平面图属性 --> <!-- 平面图属性 -->
<div class="siteproperty" style="user-select: none" *ngIf="isShowProperty && isShowAttribute"> <div class="siteproperty" style="user-select: none" *ngIf="isShowProperty && isShowAttribute">
<p>面积(平方米)</p> <p>面积(平方米)</p>

162
src/app/ui/collection-tools/collection-tools.component.scss

@ -8,7 +8,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
.buildingbtnchecked{ .buildingbtnchecked{
background-color: #34A6FD; background-color: #07CDCF;
color: white; color: white;
} }
} }
@ -16,46 +16,56 @@
//header头部 //header头部
.header { .header {
position: relative; position: relative;
flex: 5%; width: 100%;
height: 46px;
min-height: 46px;
display: flex; display: flex;
align-items:center; align-items:center;
min-height: 40px;
background-color: #fff; background-color: #fff;
box-shadow: inset 0px -3px 5px 0px rgb(165, 163, 163); box-shadow: inset 0px -3px 5px 0px rgb(165, 163, 163);
.nameShow{ .headerTitle {
cursor: pointer; width: 235px;
user-select: none; overflow: hidden;
} color: #07CDCF;
.copytobutn{ box-sizing: border-box;
width: 33px; padding-left: 25px;
min-width: 33px; font-size: 20px;
display: flex; font-weight: 550;
justify-content: center;
}
font-size: 18px;
mat-icon{
font-size: 26px;
vertical-align: text-top;
} }
span{ .headerCenter {
height: 24px; flex: 1;
line-height: 24px; overflow: hidden;
input {
width: 99%;
height: 30px;
background-color: #e7f0f0;
border-radius: 5px;
}
} }
.patternSwitch{ .headerRight {
position: absolute; width: 450px;
right: 140px; overflow: hidden;
span{ box-sizing: border-box;
font-size: 18px; padding-left: 10px;
cursor: pointer; .fraction { font-size: 14px; }
margin: 0 3px; .fraction input {
display: inline-block; width: 40px;
border: 1px solid gray; height: 24px;
border-radius: 3px; margin: 0 2px;
padding: 0 5px; border-radius: 5px;
} }
.selectedPattern{ button {
background-color: #2196f3; font-size: 14px;
color: white; color: #07CDCF;
background-color: #fff;
border: none;
outline: none;
cursor:pointer;
}
.mat-icon {
font-size: 22px;
vertical-align: middle;
margin-right: 3px;
} }
} }
} }
@ -106,13 +116,21 @@
top: 0; top: 0;
} }
.functionalDomain { .functionalDomain {
flex: 95%; flex: 1;
overflow: hidden; overflow: hidden;
.functionalDomainContent { .functionalDomainContent {
position: relative; position: relative;
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
.centerBuildingDiv {
position: absolute;
width: 400px;
top: 40px;
left: 240px;
z-index: 1111;
display: flex;
}
.functionalDomainLeft { .functionalDomainLeft {
background-color: #fff; background-color: #fff;
display: flex; display: flex;
@ -120,7 +138,7 @@
margin-left: 0px; margin-left: 0px;
transition: margin-left 0.5s; transition: margin-left 0.5s;
min-width: 235px; min-width: 235px;
border: 1px solid #E6EAEE; border: 1px solid #cacdd1;
width: 235px; width: 235px;
left: 0; left: 0;
z-index: 111; z-index: 111;
@ -134,13 +152,13 @@
} }
} }
.functionalDomainRight { .functionalDomainRight {
z-index: 1001; z-index: 111;
margin-right: 0px; margin-right: 0px;
transition: margin-right 0.5s; transition: margin-right 0.5s;
border: 1px solid #464646; border: 1px solid #cacdd1;
width: 235px; width: 235px;
min-width: 235px;
right: 0; right: 0;
} }
//右边导航栏显示隐藏 //右边导航栏显示隐藏
.togglePanel2 { .togglePanel2 {
@ -155,26 +173,51 @@
} }
//右边操作栏 //中间建筑/楼层
.title{ .centerTotal {
width: 100%; flex: 49%;
height: 35px; background-color: #fff;
background-color: #464646; box-shadow: 0px 0px 5px 3px rgb(165, 163, 163);
div{ border-radius: 5px;
width: 50%; box-sizing: border-box;
height: 35px; padding: 5px 0;
line-height: 35px; .centerTotalHeader {
background-color: #595959; height: 30px;
border-radius: 5px; line-height: 30px;
span{ box-sizing: border-box;
color: white; padding: 0 5px;
font-size: 14px; font-size: 14px;
font-weight: 400; .mat-icon:hover {cursor: move;;}
padding-left: 5px; .mat-icon {
font-size: 24px;
color: rgb(175, 164, 164);
margin: 0 30px 0 10px;
} }
} }
.everyTotal {
width: 100%;
height: 30px;
line-height: 30px;
box-sizing: border-box;
padding: 0 5px;
margin: 3px 0;
cursor:pointer;
font-size: 16px;
}
} }
//中间建筑/楼层
//右边操作栏
.titleS{
width: 100%;
height: 35px;
line-height: 35px;
padding-left: 5px;
box-sizing: border-box;
color: #07CDCF;
.mat-icon {vertical-align: middle; margin-right: 5px; font-size: 22px;}
}
input { border: none; outline: none; background-color: #d6dddf; box-sizing: border-box; padding-left: 5px; }
//右侧属性 //右侧属性
.property{ .property{
@ -188,7 +231,7 @@
padding-left: 5px; padding-left: 5px;
} }
.siteproperty_size{ .siteproperty_size{
background-color: #e3e3e3; background-color: #F2F5F6;
width: 93%; width: 93%;
margin: 0 auto; margin: 0 auto;
border-radius: 3px; border-radius: 3px;
@ -216,7 +259,8 @@
font-size: 15px; font-size: 15px;
} }
input{ input{
height: 18px; height: 24px;
border-radius: 3px;
} }
.biginput{ .biginput{
display: block; display: block;
@ -405,7 +449,7 @@ div:focus {
bottom: 0; bottom: 0;
height: 158px; height: 158px;
width: auto; width: auto;
z-index: 100; z-index: 111;
background-color: white; background-color: white;
border: 1px solid #464646; border: 1px solid #464646;
.dragDiv{ .dragDiv{
@ -413,7 +457,7 @@ div:focus {
height: 3px; height: 3px;
position: absolute; position: absolute;
top: 0; top: 0;
z-index: 1000; z-index: 111;
cursor: n-resize; cursor: n-resize;
} }
.title{ .title{

1
src/app/ui/collection-tools/collection-tools.component.ts

@ -148,7 +148,6 @@ export class CollectionToolsComponent implements OnInit {
} }
} }
pattern:boolean = false//默认为基本信息编辑 pattern:boolean = false//默认为基本信息编辑
yyy(){ yyy(){
console.log(this.canvasData.selectPanelPoint) console.log(this.canvasData.selectPanelPoint)

7
src/app/ui/collection-tools/panel.scss

@ -157,7 +157,6 @@
flex-direction: column; flex-direction: column;
overflow: hidden; overflow: hidden;
padding-bottom: 10px; padding-bottom: 10px;
// border-top: 1px dashed #999;
} }
@ -245,13 +244,13 @@
} }
// 楼层/区域 是避难层时 // 楼层/区域 是避难层时
.isRefugeStorey { .isRefugeStorey {
color: #fff; color: #FF8678;
background-color: rgb(238, 186, 186); background-color: #fff;
} }
//选中平面图时 //选中平面图时
.selectSitePlan { .selectSitePlan {
color: #fff; color: #fff;
background-color: #6BC2FF; background-color: #07CDCF;
} }
//选中素材库图片时 //选中素材库图片时
.selectImg { .selectImg {

44
src/app/ui/enterpriseuser/enterpriseuser.component.ts

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

30
src/app/ui/teacherManagement/enterpriseuser.component.ts

@ -46,7 +46,7 @@ export class TeacherManagementComponent implements OnInit {
RoleType: '1', RoleType: '1',
PageNumber: String(this.pageNumber), PageNumber: String(this.pageNumber),
} }
this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{ this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{
this.length = data.totalCount this.length = data.totalCount
this.pageSize = data.pageSize this.pageSize = data.pageSize
this.dataSource = new MatTableDataSource<any>(data.items) this.dataSource = new MatTableDataSource<any>(data.items)
@ -60,7 +60,7 @@ export class TeacherManagementComponent implements OnInit {
RealName: this.name || '', RealName: this.name || '',
RoleType: '1', RoleType: '1',
} }
this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{ this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{
this.length = data.totalCount this.length = data.totalCount
this.pageSize = data.pageSize this.pageSize = data.pageSize
this.pageEvent.pageIndex = 0 this.pageEvent.pageIndex = 0
@ -76,7 +76,7 @@ export class TeacherManagementComponent implements OnInit {
RoleType: '1', RoleType: '1',
PageNumber: String(this.pageNumber), PageNumber: String(this.pageNumber),
} }
this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{ this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{
this.length = data.totalCount this.length = data.totalCount
this.pageSize = data.pageSize this.pageSize = data.pageSize
this.dataSource = new MatTableDataSource<any>(data.items) this.dataSource = new MatTableDataSource<any>(data.items)
@ -125,7 +125,7 @@ export class TeacherManagementComponent implements OnInit {
//重置密码 //重置密码
reset (e) { reset (e) {
this.http.put(`/api/Users/${e.name}/ResetPassword`,{}).subscribe( this.http.put(`/api/ExamUsers/${e.name}/ResetPassword`,{}).subscribe(
data=>{ data=>{
const config = new MatSnackBarConfig(); const config = new MatSnackBarConfig();
config.verticalPosition = 'top'; config.verticalPosition = 'top';
@ -150,7 +150,7 @@ export class TeacherManagementComponent implements OnInit {
creationTime : date, creationTime : date,
posts : e.posts posts : e.posts
} }
this.http.put(`/api/Users/${e.name}`,body).subscribe(data => { this.http.put(`/api/ExamUsers/${e.name}`,body).subscribe(data => {
const config = new MatSnackBarConfig(); const config = new MatSnackBarConfig();
config.verticalPosition = 'top'; config.verticalPosition = 'top';
config.duration = 3000; config.duration = 3000;
@ -170,7 +170,7 @@ export class TeacherManagementComponent implements OnInit {
creationTime : date, creationTime : date,
posts : e.posts posts : e.posts
} }
this.http.put(`/api/Users/${e.name}`,body).subscribe(data => { this.http.put(`/api/ExamUsers/${e.name}`,body).subscribe(data => {
const config = new MatSnackBarConfig(); const config = new MatSnackBarConfig();
config.verticalPosition = 'top'; config.verticalPosition = 'top';
config.duration = 3000; config.duration = 3000;
@ -183,7 +183,7 @@ export class TeacherManagementComponent implements OnInit {
delete (e) { delete (e) {
let isTrue = confirm('您确定要删除吗') let isTrue = confirm('您确定要删除吗')
if (isTrue) { if (isTrue) {
this.http.delete(`/api/Users/${e.name}`).subscribe(data=>{ this.http.delete(`/api/ExamUsers/${e.name}`).subscribe(data=>{
const config = new MatSnackBarConfig(); const config = new MatSnackBarConfig();
config.verticalPosition = 'top'; config.verticalPosition = 'top';
config.duration = 3000 config.duration = 3000
@ -223,23 +223,11 @@ export class editTeacher {
this.data.posts.forEach((item) => { this.data.posts.forEach((item) => {
this.toppings.value.push(item.id) this.toppings.value.push(item.id)
}) })
this.getAllPosts()
} }
//获得所有职务 //获得所有职务
getAllPosts(){ getAllPosts(){
this.http.get("/api/Posts").subscribe( (data:any) =>{
// console.log(123,data)
data.forEach(item => {
if(item.name.indexOf("支队级") != -1){
this.detachmentPosts.push(item)
}else if(item.name.indexOf("大队级") != -1){
this.brigadePosts.push(item)
}else{
this.RescueStationPosts.push(item)
}
});
})
} }
@ -259,7 +247,7 @@ export class editTeacher {
creationTime : date, creationTime : date,
posts : postsObj posts : postsObj
} }
this.http.put(`/api/Users/${this.data.name}`,body).subscribe(data => { this.http.put(`/api/ExamUsers/${this.data.name}`,body).subscribe(data => {
this.dialogRef.close("修改成功"); this.dialogRef.close("修改成功");
}) })
} }

Loading…
Cancel
Save