diff --git a/proxy.config.json b/proxy.config.json index b28a11f..f9e430c 100644 --- a/proxy.config.json +++ b/proxy.config.json @@ -1,6 +1,6 @@ { "/api": { - "target": "http://121.37.20.190:8000", + "target": "http://121.37.20.190:8006", "secure": false, "changeOrigin": true } diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 0eac6ce..8dd5e69 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -7,6 +7,7 @@ import { LockscreenComponent } from './pages/lockscreen/lockscreen.component'; //路由守卫 import {AuthGuard} from './auth.guard' import { CreateTestScoreComponent } from './examiner/create-test-score/create-test-score.component'; +import { CollectionToolsComponent } from './ui/collection-tools/collection-tools.component'; @@ -20,6 +21,7 @@ const routes: Routes = [ ] }, { path:'examiner/create-test-score', component:CreateTestScoreComponent,canActivate: [AuthGuard],}, //创建试卷具体分数页面 + { path: 'canvasTool', component:CollectionToolsComponent,canActivate: [AuthGuard], }, //编制工具 { path:'adminLogin', component:LoginComponent}, //管理员登录路由 { path:'login', component:LockscreenComponent}, //教员学员登录路由 diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 5664cce..0a77d73 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -20,12 +20,12 @@ export class AppComponent { let token = sessionStorage.getItem("token"); let refreshToken = sessionStorage.getItem("refreshToken"); if(token && refreshToken) { - this.http.post('/api/Account/RefreshToken', { + this.http.post('/api/ExamAccounts/RefreshToken', { token: token, refreshToken: refreshToken }).subscribe((data:any) => { - sessionStorage.setItem('realName',data.realName) - sessionStorage.setItem('roleType',data.roleType) + sessionStorage.setItem("realName",data.realName); + sessionStorage.setItem("roleType",data.roleType); sessionStorage.setItem("token",data.token); sessionStorage.setItem("refreshToken",data.refreshToken); this.token.startUp() diff --git a/src/app/http-interceptors/cache-token.service.ts b/src/app/http-interceptors/cache-token.service.ts index 5e0b65e..c5a8399 100644 --- a/src/app/http-interceptors/cache-token.service.ts +++ b/src/app/http-interceptors/cache-token.service.ts @@ -17,11 +17,12 @@ export class CacheTokenService { var token = sessionStorage.getItem("token"); var refreshToken = sessionStorage.getItem("refreshToken"); if (token && refreshToken) { - this.http.post('/api/Account/RefreshToken', { + this.http.post('/api/ExamAccounts/RefreshToken', { token: token, refreshToken: refreshToken, }).subscribe((data:any) => { - sessionStorage.setItem('realName',data.realName) + sessionStorage.setItem("realName",data.realName); + sessionStorage.setItem("roleType",data.roleType); sessionStorage.setItem("token",data.token); sessionStorage.setItem("refreshToken",data.refreshToken); }) diff --git a/src/app/pages/lockscreen/lockscreen.component.html b/src/app/pages/lockscreen/lockscreen.component.html index 5a296cc..52c1d90 100644 --- a/src/app/pages/lockscreen/lockscreen.component.html +++ b/src/app/pages/lockscreen/lockscreen.component.html @@ -13,13 +13,13 @@
- - + +
account_box - +
diff --git a/src/app/pages/lockscreen/lockscreen.component.ts b/src/app/pages/lockscreen/lockscreen.component.ts index 5894d66..19a09b4 100644 --- a/src/app/pages/lockscreen/lockscreen.component.ts +++ b/src/app/pages/lockscreen/lockscreen.component.ts @@ -20,21 +20,22 @@ export class LockscreenComponent implements OnInit { } - roleType:string = '2'; //登录角色 + roleType:string = '1'; //登录角色 errmsg :string = ''; //错误信息 //登录 onSubmit(e){ - // let params = { roleType: this.roleType } - // this.http.post('/api/Account/SignIn',e,{params}).subscribe((data:any)=>{ - // sessionStorage.setItem("realName",data.realName); - // sessionStorage.setItem("token",data.token); - // sessionStorage.setItem("refreshToken",data.refreshToken); - // this.token.startUp(); //登陆成功启动定时器刷新token - // this.router.navigate(['/home/createexam']) //登陆成功跳转页面 - // },(err) => {this.errmsg = err}) + let params = { roleType: this.roleType } + this.http.post('/api/ExamAccounts/SignIn',e,{params}).subscribe((data:any)=>{ + sessionStorage.setItem("realName",data.realName); + sessionStorage.setItem("roleType",data.roleType); + sessionStorage.setItem("token",data.token); + sessionStorage.setItem("refreshToken",data.refreshToken); + this.token.startUp(); //登陆成功启动定时器刷新token + this.router.navigate(['/home/createexam']) //登陆成功跳转页面 + },(err) => {this.errmsg = err}) } //切换登录角色 diff --git a/src/app/pages/login/login.component.html b/src/app/pages/login/login.component.html index 443f290..7517352 100644 --- a/src/app/pages/login/login.component.html +++ b/src/app/pages/login/login.component.html @@ -9,7 +9,7 @@
account_box - +
diff --git a/src/app/pages/login/login.component.ts b/src/app/pages/login/login.component.ts index d15cdfd..1e88131 100644 --- a/src/app/pages/login/login.component.ts +++ b/src/app/pages/login/login.component.ts @@ -27,9 +27,10 @@ export class LoginComponent implements OnInit { //登录 onSubmit(e){ - // let params = { roleType: '0' },{params} - this.http.post('/api/Account/SignIn',e).subscribe((data:any)=>{ + 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); sessionStorage.setItem("token",data.token); sessionStorage.setItem("refreshToken",data.refreshToken); this.token.startUp(); //登陆成功启动定时器刷新token diff --git a/src/app/tabbar/tabbar.component.ts b/src/app/tabbar/tabbar.component.ts index f1566b9..b49916f 100644 --- a/src/app/tabbar/tabbar.component.ts +++ b/src/app/tabbar/tabbar.component.ts @@ -40,7 +40,7 @@ export class TabbarComponent implements OnInit { signOut () { let out = confirm("您确定要退出吗") if(out) { - this.http.post('/api/Account/SignOut',{}).subscribe(data=>{ + this.http.post('/api/ExamAccounts/SignOut',{}).subscribe(data=>{ sessionStorage.clear() this.token.delete() this.router.navigate(['/login']) diff --git a/src/app/ui/collection-tools/collection-tools.component.html b/src/app/ui/collection-tools/collection-tools.component.html index a7798e7..59ff229 100644 --- a/src/app/ui/collection-tools/collection-tools.component.html +++ b/src/app/ui/collection-tools/collection-tools.component.html @@ -1,179 +1,72 @@
- - - 图标大小 - - - 正常 - 放大2倍 - 放大4倍 - - - - - - - - 基本信息名称 - visibility - - - 想定作业名称 - visibility - -
- - 基本信息编辑 - - - 想定作业编辑 - -
- - tv - create - description - -
- - -
- - - - -
-
- keyboard_arrow_right - keyboard_arrow_left - 天气 - - 气温 -
- - -
- 风力 - - 风向 - -
+
富丽华大酒店
+
+
+ + + +
- +
- -
-
- -
-
- keyboard_arrow_up - keyboard_arrow_down - - +
+
+
open_with建筑总平面图
+
总平面图
+
+ {{item.name}} +
+
+
+
+
+ {{item.name}}
-
-
- - - - - - - - - - photo_size_select_actual - - - - - - -
-

- keyboard_arrow_up -

-

- edit - delete -

-

- cached - library_books -

-

- keyboard_arrow_down -

+
+
+
+ + +
+
+ keyboard_arrow_up + keyboard_arrow_down + + +
+
+ + + +
+ +
- -
+ +
+ -
+
keyboard_arrow_up keyboard_arrow_down @@ -200,35 +93,46 @@
- -
-
- keyboard_arrow_up - keyboard_arrow_down - - + +
+
+ keyboard_arrow_up + keyboard_arrow_down +
-
- - - -
- -
- edit - add - library_books - delete_forever -
-
-
+
+ + + + + + + {{node.name}} + + ({{node.children.length}}) + check_circle_outline + + + + + {{node.name}} + + ({{node.children.length}}) + check_circle_outline + + + +
- +
@@ -236,12 +140,8 @@
-
-
-
- 属性 -
-
+
+
info属性

面积(平方米)

@@ -387,67 +287,10 @@
- -
- -
- -
-
- 消防要素 -
-
- -
- - - - - - - {{node.name}} - - ({{node.children.length}}) - visibility - - - - - - - {{node.name}} - - ({{node.children.length}}) - visibility - - - -
-
-
-
-
-
- 节点详情 -
-
- 注意事项 -
-
-
- - -
-
+
\ No newline at end of file diff --git a/src/app/ui/collection-tools/collection-tools.component.scss b/src/app/ui/collection-tools/collection-tools.component.scss index 19402a6..ee90d8f 100644 --- a/src/app/ui/collection-tools/collection-tools.component.scss +++ b/src/app/ui/collection-tools/collection-tools.component.scss @@ -1,18 +1,14 @@ @import './panel.scss'; -.icongray{ - color: #D9D0DC; -} .content { width: 100%; height: 100%; overflow: hidden; box-sizing: border-box; - padding: 1px; + padding: 3px; display: flex; flex-direction: column; - .buildingbtnchecked{ - background-color: #34A6FD; + background-color: #07CDCF; color: white; } } @@ -20,45 +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; - .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; + box-shadow: inset 0px -3px 5px 0px rgb(165, 163, 163); + .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; } } } @@ -109,13 +116,21 @@ top: 0; } .functionalDomain { - flex: 90%; + 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; @@ -123,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; @@ -137,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 { @@ -158,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{ @@ -191,7 +231,7 @@ padding-left: 5px; } .siteproperty_size{ - background-color: #e3e3e3; + background-color: #F2F5F6; width: 93%; margin: 0 auto; border-radius: 3px; @@ -219,7 +259,8 @@ font-size: 15px; } input{ - height: 18px; + height: 24px; + border-radius: 3px; } .biginput{ display: block; @@ -309,13 +350,6 @@ .firecategoriesTree{ overflow-y: auto; height: 100%; - mat-tree-node{ - position: relative; - } - .isLookCss{ - position: absolute; - right: 6px; - } } } @@ -337,13 +371,19 @@ div:focus { margin-right: 3px; } - // tree +.isLookCss{ + margin-left: auto; + color: #07CDCF; + .icongray{ + color: #D9D0DC; + } +} .mat-tree-node{ - min-height: 0; - height: 32px; - line-height: 32px; - font-size: 13px; + padding-right: 3px; + min-height: 30px; + height: 30px; + font-size: 12px; cursor: pointer; } .treeNode:hover{ @@ -409,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{ @@ -417,7 +457,7 @@ div:focus { height: 3px; position: absolute; top: 0; - z-index: 1000; + z-index: 111; cursor: n-resize; } .title{ diff --git a/src/app/ui/collection-tools/collection-tools.component.ts b/src/app/ui/collection-tools/collection-tools.component.ts index 2b9a6b4..e2b8397 100644 --- a/src/app/ui/collection-tools/collection-tools.component.ts +++ b/src/app/ui/collection-tools/collection-tools.component.ts @@ -147,8 +147,7 @@ export class CollectionToolsComponent implements OnInit { this.isImgNumCss = false } } - pattern:boolean = true//默认为基本信息编辑 - + pattern:boolean = false//默认为基本信息编辑 yyy(){ console.log(this.canvasData.selectPanelPoint) @@ -634,7 +633,7 @@ export class CollectionToolsComponent implements OnInit { sessionStorage.setItem('planId','5fa8b0b8f8eb762cb03c6c30') sessionStorage.setItem('buildingTypeId','5e7c9018a3050b1a840ed4b7') - this.getAllLibrary() //获取素材库 + this.getAllLibrary('plan') //获取素材库 this.getAllBuildings() //获取所有建筑 this.getAllFirePlan() //获取当前单位灾情 @@ -1316,7 +1315,6 @@ export class CollectionToolsComponent implements OnInit { isRefresh? this.canvasData.isChange = false : null //服务中 数据是否改动 改为false isRefresh? this.isShowProperty = true : null isRefresh? this.isShowAttribute = true : null - !this.pattern? this.mateFireForce() : null //刷新 建筑楼层 火源/力量图标 let beforeOneId = this.selectingSitePlan.id || '' //当前 选中 平面图 楼层/区域 id let companyBuildingData = JSON.parse(JSON.stringify( this.canvasData.originalcompanyBuildingData || {} )) // 当前 单位/建筑 数据 @@ -1876,17 +1874,11 @@ export class CollectionToolsComponent implements OnInit { } this.http.post('/api/Disasters',msg).subscribe(data=>{ this.allFirePlan.push(data) - let params = {disasterId: this.allFirePlan[0].id || ''} - this.http.get('/api/DisposalNodes',{params:params}).subscribe(data=>{ //所有处置节点 - this.canvasData.allDisposalNode = data - }) + this.getDisposalNode() }) } else { //单位 有灾情时 this.allFirePlan = data - let params = {disasterId: this.allFirePlan[0].id || ''} - this.http.get('/api/DisposalNodes',{params:params}).subscribe(data=>{ //所有处置节点 - this.canvasData.allDisposalNode = data - }) + this.getDisposalNode() } }) } @@ -1895,10 +1887,10 @@ export class CollectionToolsComponent implements OnInit { getDisposalNode () { this.selectDisposalNode = '' let params = {disasterId: this.allFirePlan[0].id || ''} - this.http.get('/api/DisasterData/Markers',{params:params}).subscribe(data=>{ //灾情标签信息 - this.canvasData.allNodeMarkers = data - this.mateFireForce() - }) + // this.http.get('/api/DisasterData/Markers',{params:params}).subscribe(data=>{ //灾情标签信息 + // this.canvasData.allNodeMarkers = data + // this.mateFireForce() + // }) this.http.get('/api/DisposalNodes',{params:params}).subscribe(data=>{ //处置节点 this.canvasData.allDisposalNode = data this.handleHybridTree() diff --git a/src/app/ui/collection-tools/panel.scss b/src/app/ui/collection-tools/panel.scss index f0ae073..2e03c82 100644 --- a/src/app/ui/collection-tools/panel.scss +++ b/src/app/ui/collection-tools/panel.scss @@ -17,8 +17,8 @@ font-family: Roboto, "Helvetica Neue", sans-serif; font-size: 15px; font-weight: 400; - color: #000; - background: linear-gradient(to top,#cdced1,#FFF); + color: #fff; + background: #07CDCF; } //平面图头部字体图标样式 .hover { @@ -157,7 +157,6 @@ flex-direction: column; overflow: hidden; padding-bottom: 10px; - // border-top: 1px dashed #999; } @@ -207,6 +206,7 @@ margin: 1px 0; } //素材库图片flex +.mat-expansion-panel-header {background-color: #d6f4f5;} #panelLibrary .text{ box-sizing: border-box; margin-left: 10px; @@ -244,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 { diff --git a/src/app/ui/enterpriseuser/enterpriseuser.component.ts b/src/app/ui/enterpriseuser/enterpriseuser.component.ts index 67a2486..6967c81 100644 --- a/src/app/ui/enterpriseuser/enterpriseuser.component.ts +++ b/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(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(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("修改成功"); }) } diff --git a/src/app/ui/teacherManagement/enterpriseuser.component.ts b/src/app/ui/teacherManagement/enterpriseuser.component.ts index d70cf9c..1da79e2 100644 --- a/src/app/ui/teacherManagement/enterpriseuser.component.ts +++ b/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(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(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("修改成功"); }) } diff --git a/src/app/ui/ui-routing.module.ts b/src/app/ui/ui-routing.module.ts index 3040846..003f889 100644 --- a/src/app/ui/ui-routing.module.ts +++ b/src/app/ui/ui-routing.module.ts @@ -10,7 +10,6 @@ import { LookOverTestComponent } from './look-over-test/look-over-test.component import { StatisticAnalysisComponent } from './statistic-analysis/statistic-analysis.component'; import { JoinExamComponent } from './join-exam/join-exam.component'; import { TestRecordsComponent } from './test-records/test-records.component'; -import { CollectionToolsComponent } from './collection-tools/collection-tools.component' const routes: Routes = [ { path: '', component:CreateExamComponent }, @@ -21,7 +20,6 @@ const routes: Routes = [ { path: 'testRecords', component:TestRecordsComponent }, { path: 'teachear', component:TeacherManagementComponent }, //管理员 教员页面 { path: 'examinee', component:EnterpriseuserComponent }, //管理员 考生页面 - { path: 'canvasTool', component:CollectionToolsComponent }, //编制工具 ] @NgModule({ imports: [RouterModule.forChild(routes)], diff --git a/src/assets/css/ngZorroTree.css b/src/assets/css/ngZorroTree.css index d04cca9..3f270a6 100644 --- a/src/assets/css/ngZorroTree.css +++ b/src/assets/css/ngZorroTree.css @@ -336,10 +336,10 @@ .ant-tree .ant-tree-switcher { flex: none; - width: 24px; - height: 35px; + width: 20px; + height: 34px; margin: 0; - line-height: 22px; + line-height: 34px; font-size: 18px; text-align: center; cursor: pointer diff --git a/src/styles.scss b/src/styles.scss index 6ba0a06..6ac0f08 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -64,7 +64,14 @@ table td.mat-footer-cell:last-of-type{ align-items: center; } - +//滚动条样式 +::-webkit-scrollbar{ + width: 5px; + background-color: white; +} +::-webkit-scrollbar-thumb{ + background-color: #999; +} //x轴滚动条隐藏 .example-sidenav-content { @@ -73,7 +80,7 @@ table td.mat-footer-cell:last-of-type{ } - + .mat-tab-body-wrapper{ height: 100%; } @@ -81,12 +88,12 @@ table td.mat-footer-cell:last-of-type{ overflow: hidden!important; } .mat-select-panel { - width: 210px; - font-size: 13px!important; + width: 210px; + font-size: 13px!important; } .mat-drawer-container{ - background-color: none; + background-color: none; } //可展开面板按钮颜色