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;">
<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 class="input">

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

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

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

@ -1,7 +1,14 @@
<div class="content">
<!-- 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>
<!-- header头部 -->
<!--功能区 -->
@ -10,6 +17,22 @@
<!-- H5Canvas -->
<app-working-area #canvas [init]='this'></app-working-area>
<!-- 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;">
<!-- 处置预案 -->
@ -43,7 +66,7 @@
<!-- 处置预案 -->
<!-- 素材库 -->
<div id="materialBank" *ngIf="isEditPattern" [ngClass]="{'selectEditMode': pattern}">
<div id="materialBank">
<div class="planarGraphHeader" (click)='toggleMaterial()'>
<mat-icon *ngIf="toggleMaterialBank">keyboard_arrow_up</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-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>
<span title="{{node.name}}" [ngClass]="{'treeText': !node.isTemplate}">
{{node.name}}
</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 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
matTreeNodeToggle
[attr.aria-label]="'toggle ' + node.name">
@ -102,7 +125,7 @@
{{node.name}}
</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>
@ -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 [ngClass]="{'forbidden': !isEditPattern}" id="property" class="property" style="height: 100%;background-color: white;">
<div class="title">
<div>
<span style="user-select: none">属性</span>
</div>
</div>
<div class="titleS"><mat-icon>info</mat-icon>属性</div>
<!-- 平面图属性 -->
<div class="siteproperty" style="user-select: none" *ngIf="isShowProperty && isShowAttribute">
<p>面积(平方米)</p>

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

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

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

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

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

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

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

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

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

@ -46,7 +46,7 @@ export class TeacherManagementComponent implements OnInit {
RoleType: '1',
PageNumber: String(this.pageNumber),
}
this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{
this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{
this.length = data.totalCount
this.pageSize = data.pageSize
this.dataSource = new MatTableDataSource<any>(data.items)
@ -60,7 +60,7 @@ export class TeacherManagementComponent implements OnInit {
RealName: this.name || '',
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.pageSize = data.pageSize
this.pageEvent.pageIndex = 0
@ -76,7 +76,7 @@ export class TeacherManagementComponent implements OnInit {
RoleType: '1',
PageNumber: String(this.pageNumber),
}
this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{
this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{
this.length = data.totalCount
this.pageSize = data.pageSize
this.dataSource = new MatTableDataSource<any>(data.items)
@ -125,7 +125,7 @@ export class TeacherManagementComponent implements OnInit {
//重置密码
reset (e) {
this.http.put(`/api/Users/${e.name}/ResetPassword`,{}).subscribe(
this.http.put(`/api/ExamUsers/${e.name}/ResetPassword`,{}).subscribe(
data=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
@ -150,7 +150,7 @@ export class TeacherManagementComponent implements OnInit {
creationTime : date,
posts : e.posts
}
this.http.put(`/api/Users/${e.name}`,body).subscribe(data => {
this.http.put(`/api/ExamUsers/${e.name}`,body).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000;
@ -170,7 +170,7 @@ export class TeacherManagementComponent implements OnInit {
creationTime : date,
posts : e.posts
}
this.http.put(`/api/Users/${e.name}`,body).subscribe(data => {
this.http.put(`/api/ExamUsers/${e.name}`,body).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000;
@ -183,7 +183,7 @@ export class TeacherManagementComponent implements OnInit {
delete (e) {
let isTrue = confirm('您确定要删除吗')
if (isTrue) {
this.http.delete(`/api/Users/${e.name}`).subscribe(data=>{
this.http.delete(`/api/ExamUsers/${e.name}`).subscribe(data=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
@ -223,23 +223,11 @@ export class editTeacher {
this.data.posts.forEach((item) => {
this.toppings.value.push(item.id)
})
this.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,
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("修改成功");
})
}

Loading…
Cancel
Save