diff --git a/package-lock.json b/package-lock.json index b5831d7..0492bc2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -16031,8 +16031,7 @@ "ansi-regex": { "version": "2.1.1", "bundled": true, - "dev": true, - "optional": true + "dev": true }, "aproba": { "version": "1.2.0", @@ -16075,8 +16074,7 @@ "code-point-at": { "version": "1.1.0", "bundled": true, - "dev": true, - "optional": true + "dev": true }, "concat-map": { "version": "0.0.1", @@ -16087,8 +16085,7 @@ "console-control-strings": { "version": "1.1.0", "bundled": true, - "dev": true, - "optional": true + "dev": true }, "core-util-is": { "version": "1.0.2", @@ -16205,8 +16202,7 @@ "inherits": { "version": "2.0.4", "bundled": true, - "dev": true, - "optional": true + "dev": true }, "ini": { "version": "1.3.5", @@ -16218,7 +16214,6 @@ "version": "1.0.0", "bundled": true, "dev": true, - "optional": true, "requires": { "number-is-nan": "^1.0.0" } @@ -16248,7 +16243,6 @@ "version": "2.9.0", "bundled": true, "dev": true, - "optional": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -16267,7 +16261,6 @@ "version": "0.5.1", "bundled": true, "dev": true, - "optional": true, "requires": { "minimist": "0.0.8" } @@ -16370,7 +16363,6 @@ "version": "1.4.0", "bundled": true, "dev": true, - "optional": true, "requires": { "wrappy": "1" } @@ -16456,8 +16448,7 @@ "safe-buffer": { "version": "5.1.2", "bundled": true, - "dev": true, - "optional": true + "dev": true }, "safer-buffer": { "version": "2.1.2", @@ -16493,7 +16484,6 @@ "version": "1.0.2", "bundled": true, "dev": true, - "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -16513,7 +16503,6 @@ "version": "3.0.1", "bundled": true, "dev": true, - "optional": true, "requires": { "ansi-regex": "^2.0.0" } @@ -16557,14 +16546,12 @@ "wrappy": { "version": "1.0.2", "bundled": true, - "dev": true, - "optional": true + "dev": true }, "yallist": { "version": "3.1.1", "bundled": true, - "dev": true, - "optional": true + "dev": true } } }, @@ -17002,8 +16989,7 @@ "console-control-strings": { "version": "1.1.0", "bundled": true, - "dev": true, - "optional": true + "dev": true }, "core-util-is": { "version": "1.0.2", @@ -17120,8 +17106,7 @@ "inherits": { "version": "2.0.4", "bundled": true, - "dev": true, - "optional": true + "dev": true }, "ini": { "version": "1.3.5", @@ -17163,7 +17148,6 @@ "version": "2.9.0", "bundled": true, "dev": true, - "optional": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" @@ -17182,7 +17166,6 @@ "version": "0.5.1", "bundled": true, "dev": true, - "optional": true, "requires": { "minimist": "0.0.8" } @@ -17285,7 +17268,6 @@ "version": "1.4.0", "bundled": true, "dev": true, - "optional": true, "requires": { "wrappy": "1" } @@ -17371,8 +17353,7 @@ "safe-buffer": { "version": "5.1.2", "bundled": true, - "dev": true, - "optional": true + "dev": true }, "safer-buffer": { "version": "2.1.2", @@ -17408,7 +17389,6 @@ "version": "1.0.2", "bundled": true, "dev": true, - "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -17472,14 +17452,12 @@ "wrappy": { "version": "1.0.2", "bundled": true, - "dev": true, - "optional": true + "dev": true }, "yallist": { "version": "3.1.1", "bundled": true, - "dev": true, - "optional": true + "dev": true } } }, diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 77a4a29..e4b547a 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -1,12 +1,12 @@ import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { LoginComponent } from './pages/login/login.component'; -import { RegisterComponent } from './pages/register/register.component'; import { NavigationComponent } from './navigation/navigation.component'; import { LockscreenComponent } from './pages/lockscreen/lockscreen.component'; //路由守卫 import {AuthGuard} from './auth.guard' +import { CreateTestScoreComponent } from './examiner/create-test-score/create-test-score.component'; @@ -22,6 +22,7 @@ const routes: Routes = [ }, { path:'adminLogin', component:LoginComponent}, //管理员登录路由 { path:'login', component:LockscreenComponent}, //教员学员登录路由 + { path:'examiner/create-test-score', component:CreateTestScoreComponent}, //创建试卷具体分数页面 ]; diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 6602cda..5664cce 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -1,6 +1,5 @@ import { Component } from '@angular/core'; import { HttpClient } from '@angular/common/http' -import { Data } from './interface' import { Router,ActivatedRoute } from '@angular/router' import { IsLoginService } from './is-login.service' //引入服务 import {CacheTokenService} from './http-interceptors/cache-token.service' //引入服务 @@ -14,7 +13,6 @@ import {CacheTokenService} from './http-interceptors/cache-token.service' //引 }) export class AppComponent { - constructor(private http:HttpClient,private router:Router,public token:CacheTokenService,public isLogin:IsLoginService) { } ngOnInit(): void { diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 67dc450..c998e2e 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -8,7 +8,6 @@ import { MatCheckboxModule } from '@angular/material/checkbox'; import { MatIconModule } from '@angular/material/icon'; import { MatSidenavModule } from '@angular/material/sidenav'; import { NavigationModule } from './navigation/navigation.module'; -import { TabbarComponent } from './tabbar/tabbar.component'; import { PagesModule } from './pages/pages.module'; import { FormsModule } from '@angular/forms'; import { UiModule } from './ui/ui.module'; @@ -20,6 +19,7 @@ import { IsLoginService } from './is-login.service'; import { ComponentServiceService } from './component-service.service'; import { registerLocaleData } from '@angular/common'; import zh from '@angular/common/locales/zh'; +import { ExaminerModule } from './examiner/examiner.module'; registerLocaleData(zh); @NgModule({ declarations: [ @@ -32,11 +32,12 @@ registerLocaleData(zh); MatButtonModule, MatCheckboxModule, MatSidenavModule, - NavigationModule, + // NavigationModule, MatIconModule, PagesModule, FormsModule, - HttpClientModule + HttpClientModule, + ExaminerModule ], providers: [httpInterceptorProviders, CacheTokenService,TreeService,ComponentServiceService], bootstrap: [AppComponent] diff --git a/src/app/examiner/create-test-score/create-test-score.component.html b/src/app/examiner/create-test-score/create-test-score.component.html new file mode 100644 index 0000000..cc5c643 --- /dev/null +++ b/src/app/examiner/create-test-score/create-test-score.component.html @@ -0,0 +1,77 @@ +
+
+ +
+
+
+
+
+
+ 单位列表 +
+
+ 总分: 120 +
+
+
+ + + + + + + + + + + + + +
单位名称总分
富力华大酒店80
富力华大酒店80
+
+
+
+
+
+ 基本信息 +
+
+ 作战部署 +
+
+
+
+
+ +

宇宙无敌酒店

+ + + + + 基本信息30分 + + + +
+ xxxxx +
+
+
+
+
+
+ 作战部署 +
+
+
+
+
+
+ 上一步 +
+
+ 完成 +
+
+
+
diff --git a/src/app/examiner/create-test-score/create-test-score.component.scss b/src/app/examiner/create-test-score/create-test-score.component.scss new file mode 100644 index 0000000..bf8e027 --- /dev/null +++ b/src/app/examiner/create-test-score/create-test-score.component.scss @@ -0,0 +1,125 @@ +table,table tr th, table tr td { border-bottom: 1px solid #EEF1F5; } +table { text-align: center; border-collapse: collapse; padding:2px;} +*{ + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + scrollbar-width: none; /* Firefox */ +} +::-webkit-scrollbar { + display: none; /* Chrome Safari */ +} + +.box{ + width: 100%; + height: 100%; + background: #F2F5F6; + display: flex; + flex-direction: column; + box-sizing: border-box; + .contant{ + flex: 1; + display: flex; + flex-direction: column; + .colorspan{ + color: #07CDCF; + } + .main{ + flex: 1; + display: flex; + div{ + box-sizing: border-box; + background-color: #fff; + border-radius: 13px; + } + .leftDiv{ + width: 18%; + margin: 20px; + margin-bottom: 0; + padding: 18px; + .title{ + display: flex; + justify-content: space-between; + font-size: 16px; + } + .unitList{ + margin-top: 12px; + table{ + width: 100%; + font-size: 15px; + tr{ + height: 35px; + td:nth-child(1){ + width: 60%; + } + } + tr:nth-child(1){ + background: #F5FDFE; + } + } + } + } + .rightDiv{ + margin: 20px; + margin-left: 0; + flex: 1; + margin-bottom: 0; + display: flex; + flex-direction: column; + .tabsbox{ + height: 46px; + border-radius: 0; + background: #F2F5F6; + div{ + float: left; + height: 46px; + line-height: 46px; + width: 100px; + text-align: center; + color: #1E2323; + border-radius: 0; + border-top: 2px solid #fff; + cursor: pointer; + } + // div:nth-child(1){ + // border-radius:13px 0 0 0 ; + // } + //选中选项卡 + .selectedTab{ + color: #07CDCF; + border-top: 2px solid #07CDCF; + } + } + .maincontantbox{ + flex: 1; + overflow-y: auto; + padding: 18px; + } + } + } + .btnbox{ + width: 100%; + height: 70px; + display: flex; + justify-content: center; + align-items: center; + .btn{ + width: 100px; + height: 33px; + background: #01CFD5; + opacity: 1; + border-radius: 8px; + color: #FFFFFF; + text-align: center; + line-height: 33px; + font-size: 16px; + font-family: Source Han Sans CN; + margin: 0 15px; + cursor: pointer; + } + } + } +} \ No newline at end of file diff --git a/src/app/ui/login/login.component.spec.ts b/src/app/examiner/create-test-score/create-test-score.component.spec.ts similarity index 51% rename from src/app/ui/login/login.component.spec.ts rename to src/app/examiner/create-test-score/create-test-score.component.spec.ts index d6d85a8..c88ba6b 100644 --- a/src/app/ui/login/login.component.spec.ts +++ b/src/app/examiner/create-test-score/create-test-score.component.spec.ts @@ -1,20 +1,20 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; -import { LoginComponent } from './login.component'; +import { CreateTestScoreComponent } from './create-test-score.component'; -describe('LoginComponent', () => { - let component: LoginComponent; - let fixture: ComponentFixture; +describe('CreateTestScoreComponent', () => { + let component: CreateTestScoreComponent; + let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ LoginComponent ] + declarations: [ CreateTestScoreComponent ] }) .compileComponents(); })); beforeEach(() => { - fixture = TestBed.createComponent(LoginComponent); + fixture = TestBed.createComponent(CreateTestScoreComponent); component = fixture.componentInstance; fixture.detectChanges(); }); diff --git a/src/app/examiner/create-test-score/create-test-score.component.ts b/src/app/examiner/create-test-score/create-test-score.component.ts new file mode 100644 index 0000000..848c829 --- /dev/null +++ b/src/app/examiner/create-test-score/create-test-score.component.ts @@ -0,0 +1,18 @@ +import { Component, OnInit } from '@angular/core'; + +@Component({ + selector: 'app-create-test-score', + templateUrl: './create-test-score.component.html', + styleUrls: ['./create-test-score.component.scss'] +}) +export class CreateTestScoreComponent implements OnInit { + + constructor() { } + selectedTab:number = 1 //选中的选项卡 + selectTab(index){ + this.selectedTab = index + } + ngOnInit(): void { + } + +} diff --git a/src/app/examiner/examiner.module.ts b/src/app/examiner/examiner.module.ts index 40da210..a346dfd 100644 --- a/src/app/examiner/examiner.module.ts +++ b/src/app/examiner/examiner.module.ts @@ -48,9 +48,13 @@ import { MatFormFieldModule } from '@angular/material/form-field'; import { MatPaginatorIntl } from '@angular/material/paginator'; import { myPaginator } from '../ui/my-paginator'; import { ExaminerIndexComponent } from './examiner-index/examiner-index.component'; +import { CreateTestScoreComponent } from './create-test-score/create-test-score.component'; +import { NavigationModule } from '../navigation/navigation.module'; + + @NgModule({ - declarations: [ExaminerIndexComponent], + declarations: [CreateTestScoreComponent], imports: [ CommonModule, examinerRoutingModule, @@ -97,7 +101,8 @@ import { ExaminerIndexComponent } from './examiner-index/examiner-index.componen PortalModule, ScrollingModule, ReactiveFormsModule, - FormsModule + FormsModule, + NavigationModule ], providers: [ { provide: MatPaginatorIntl, useValue: myPaginator() } ] }) diff --git a/src/app/http-interceptors/cache-token.service.ts b/src/app/http-interceptors/cache-token.service.ts index 29e5bfd..f5acaf9 100644 --- a/src/app/http-interceptors/cache-token.service.ts +++ b/src/app/http-interceptors/cache-token.service.ts @@ -29,7 +29,7 @@ export class CacheTokenService { } else { this.delete() } },18*60*1000) } - + //删除定时器 delete = ():void=> { window.clearInterval(this.timer) diff --git a/src/app/navigation/navigation.component.html b/src/app/navigation/navigation.component.html index 6b8724e..049838b 100644 --- a/src/app/navigation/navigation.component.html +++ b/src/app/navigation/navigation.component.html @@ -4,7 +4,7 @@ * @Author: sueRimn * @Date: 2020-12-10 10:21:40 * @LastEditors: sueRimn - * @LastEditTime: 2020-12-11 09:51:16 + * @LastEditTime: 2020-12-11 10:01:35 --> @@ -31,15 +31,15 @@ - + - - - -
- - - +
+
+ +
+
+
+
diff --git a/src/app/navigation/navigation.component.scss b/src/app/navigation/navigation.component.scss index 8a80aec..8f50918 100644 --- a/src/app/navigation/navigation.component.scss +++ b/src/app/navigation/navigation.component.scss @@ -202,6 +202,8 @@ mat-sidenav{ .example-sidenav-content{ height: 100%; overflow: hidden; + display: flex; + flex-direction: column; } //一级目录前图标 diff --git a/src/app/navigation/navigation.module.ts b/src/app/navigation/navigation.module.ts index b887108..a127fcb 100644 --- a/src/app/navigation/navigation.module.ts +++ b/src/app/navigation/navigation.module.ts @@ -65,7 +65,6 @@ import {MatTreeModule} from '@angular/material/tree'; MatIconModule, FormsModule, UiModule, - A11yModule, CdkStepperModule, CdkTableModule, @@ -110,7 +109,8 @@ import {MatTreeModule} from '@angular/material/tree'; ScrollingModule ], exports: [ - NavigationComponent + NavigationComponent, + TabbarComponent ] }) export class NavigationModule { } diff --git a/src/app/pages/lockscreen/lockscreen.component.html b/src/app/pages/lockscreen/lockscreen.component.html index 35e50bb..bd55be4 100644 --- a/src/app/pages/lockscreen/lockscreen.component.html +++ b/src/app/pages/lockscreen/lockscreen.component.html @@ -1,13 +1,18 @@
-

考试系统

+
+
+ +

消防救援单位信息考核系统

+
+
- - + +
@@ -20,20 +25,13 @@
-
- -
- -
- {{errmsg}} -
- +
+
{{errmsg}}
+ +
-
-

arrow_drop_down_circle

-
\ No newline at end of file diff --git a/src/app/pages/lockscreen/lockscreen.component.scss b/src/app/pages/lockscreen/lockscreen.component.scss index c872d8a..de121e5 100644 --- a/src/app/pages/lockscreen/lockscreen.component.scss +++ b/src/app/pages/lockscreen/lockscreen.component.scss @@ -1,76 +1,31 @@ .content { width: 100%; height: 100%; - max-height: 100%; display: flex; - justify-content:center; - align-items: center; - background: url('../../../assets//images/loginBGC.png'); - background-repeat:no-repeat; - background-size:100% 100%; - -moz-background-size:100% 100%; -} - -.loginBox { - min-width: 1080px; - min-height: 610px; - margin: 0 auto; - width: 70%; - text-align: center; + overflow: hidden; box-sizing: border-box; - position: relative; - - .loginBackground{ - width: 100%; - height: 100%; - margin: 0 auto; - } - .center { - width: 30%; - box-sizing: border-box; - margin: 0 auto; - position: absolute; - top: 24%; - right: 16%; + padding: 1px; + .leftBox { + flex: 70%; + background: url('../../../assets/images/loginBackground.png'); + background-size: 100% 100%; } -} - -.header { - width: 100%; - text-align: center; - position: fixed; - top: 60px; - font-size: 46px; - font-weight: 800; - color: #fff; - font-family: 'NSimSun'; -} -.footer { - width: 100%; - text-align: center; - position: fixed; - bottom: 35px; - font-size: 14px; - color: white; -} -.toLogin{ - color: #B0B0B0; - transform: rotate(90deg); - transform-origin: center center; - position: fixed; - left: 1%; - bottom: 1%; - cursor:pointer; - mat-icon{ - width: 36px; - height: 36px; - font-size: 36px; - cursor:pointer; + .loginBox { + flex: 30%; + position: relative; + display: flex; + // align-items: center; + background-color: #fff; + .center { + width: 60%; + margin: 0 auto; + text-align: center; + box-sizing: border-box; + padding-top: 120px; + } } } - - // 表单内部样式 .forget{ width: 100%; @@ -79,7 +34,7 @@ label { box-sizing: border-box; font-size: 14px; - color: #2196f3; + color: #07CDCF; cursor:pointer; } } @@ -93,7 +48,7 @@ width: 100%; color: white; border-radius: 5px; - background:linear-gradient(to right,#4DA3FE,#52b9fe,#56cdff) + background:linear-gradient(to right,#07CDCF,#07CDCF,#0ad6da); } //input 框 + 字体图标 .input { @@ -102,14 +57,13 @@ position: relative; .role{ box-sizing: border-box; - margin: 0px 15px; + padding: 10px 0; + margin: 0 10px; display: inline-block; - width: 30%; text-align: center; - font-size: 26px; - font-weight: 800; - font-family: 'NSimSun'; - color: #4DA1FE; + font-size: 18px; + font-weight: 550; + color: #07CDCF; cursor:pointer; } input { @@ -119,6 +73,8 @@ height: 36px; padding-left: 30px; } + img { width: 75px; height: 80px; } + h1 { font-size:28px; font-weight:700; margin-top:25px; font-style:italic; } } .icon { width: 24px; @@ -136,8 +92,20 @@ top: 7px; left: 8px; } +.toAdmin { + display: inline-block; + width: 100%; + text-align: center; + font-size: 14px; + font-weight: 550; + color: #07CDCF; + cursor:pointer; + position: absolute; + bottom: 25px; + left: 0; +} //class名是否选中 .isCheck { - border-bottom: 3px solid #4DA1FE; + border-bottom: 3px solid #07CDCF; } \ No newline at end of file diff --git a/src/app/pages/lockscreen/lockscreen.component.ts b/src/app/pages/lockscreen/lockscreen.component.ts index 9ef9b3e..f83430d 100644 --- a/src/app/pages/lockscreen/lockscreen.component.ts +++ b/src/app/pages/lockscreen/lockscreen.component.ts @@ -36,11 +36,7 @@ export class LockscreenComponent implements OnInit { sessionStorage.setItem("token",data.token); sessionStorage.setItem("refreshToken",data.refreshToken); this.token.startUp(); //登陆成功启动定时器刷新token - const config = new MatSnackBarConfig(); - config.verticalPosition = 'top'; - config.duration = 3000 this.router.navigate(['/home/createexam']) //登陆成功跳转页面 - this.snackBar.open('登陆成功','确定',config); },(err) => {this.errmsg = err}) } diff --git a/src/app/pages/login/login.component.html b/src/app/pages/login/login.component.html index 0ddf531..3b7b8fa 100644 --- a/src/app/pages/login/login.component.html +++ b/src/app/pages/login/login.component.html @@ -1,33 +1,31 @@ -
+ \ No newline at end of file diff --git a/src/app/pages/login/login.component.scss b/src/app/pages/login/login.component.scss index 09c8307..dd3e43a 100644 --- a/src/app/pages/login/login.component.scss +++ b/src/app/pages/login/login.component.scss @@ -1,81 +1,66 @@ -.content { +.login { width: 100%; height: 100%; - max-height: 100%; - background: url('../../../assets//images/loginBackground.jpg'); - background-repeat:no-repeat; + overflow: hidden; + box-sizing: border-box; + padding: 1px; + background: url('../../../assets/images/loginBackground.png'); background-size:100% 100%; - -moz-background-size:100% 100%; } - .loginBox { - margin: 0 auto; - width: 40%; - text-align: center; - box-sizing: border-box; - padding: 8% 0; - .header { - font-size: 34px; - font-weight: 650; - font-family: 'NSimSun'; - } - .center { - padding: 100px 0; - width: 50%; - box-sizing: border-box; - margin: 0 auto; - } -} -.footer { width: 100%; + height: 100%; + display: flex; + justify-content: center; + align-items: center; +} + +.card { + width: 500px; + height: 355px; + border-radius: 10px; + padding-top: 30px; + background-color: #fff; text-align: center; - position: fixed; - bottom: 35px; - color: #858688; - font-size: 14px; + box-shadow:0px 0px 10px 5px #333; + position: relative; + .example-container { width: 60%; margin: 0 auto; } } -.toLogin{ - color: #B0B0B0; - transform: rotate(270deg); - transform-origin: center center; - position: fixed; - left: 1%; - bottom: 1%; - cursor:pointer; - mat-icon{ - width: 36px; - height: 36px; - font-size: 36px; - cursor:pointer; - } +.cardheader{ + font-size: 26px; + font-weight: 700; + font-style: italic; + color: #07CDCF; } - - // 表单内部样式 .forget{ - margin: 30px auto; + width: 100%; + text-align: right; + margin: 15px auto; label { - margin-left: 80%; box-sizing: border-box; font-size: 14px; - color: #2196f3; + color: #07CDCF; cursor:pointer; } } .alert-danger { - margin-bottom: 30px; + margin-bottom: 10px; text-align: left; font-size: 14px; color: red; } .loginBtn { width: 100%; + color: white; + border-radius: 5px; + background:linear-gradient(to right,#07CDCF,#07CDCF,#0ad6da); } //input 框 + 字体图标 .input { width: 100%; - margin: 30px auto; + margin: 35px auto 0; position: relative; input { width: 90%; @@ -100,4 +85,16 @@ position: absolute; top: 7px; left: 8px; +} +.toAdmin { + display: inline-block; + width: 100%; + text-align: center; + font-size: 14px; + font-weight: 550; + color: #07CDCF; + cursor:pointer; + position: absolute; + bottom: 10px; + left: 0; } \ No newline at end of file diff --git a/src/app/pages/login/login.component.ts b/src/app/pages/login/login.component.ts index 8299f2b..f059bea 100644 --- a/src/app/pages/login/login.component.ts +++ b/src/app/pages/login/login.component.ts @@ -36,11 +36,7 @@ export class LoginComponent implements OnInit { sessionStorage.setItem("token",data.token); sessionStorage.setItem("refreshToken",data.refreshToken); this.token.startUp(); //登陆成功启动定时器刷新token - const config = new MatSnackBarConfig(); - config.verticalPosition = 'top'; - config.duration = 3000 - this.router.navigate(['/home/createexam']) //登陆成功跳转页面 - this.snackBar.open('登陆成功','确定',config); + this.router.navigate(['/home/teachear']) //登陆成功跳转页面 },(err) => {this.errmsg = err}) } diff --git a/src/app/pages/pages-routing.module.ts b/src/app/pages/pages-routing.module.ts deleted file mode 100644 index ec1ecae..0000000 --- a/src/app/pages/pages-routing.module.ts +++ /dev/null @@ -1,17 +0,0 @@ -// import { Routes, RouterModule } from '@angular/router'; -// import { NgModule } from '@angular/core'; -// import { PagesComponent } from './pages.component'; -// import { PersonaldataComponent } from './personaldata/personaldata.component'; - - -// const routes: Routes = [ -// { path: '', component: PagesComponent}, -// { path: 'personaldata ', component: PersonaldataComponent}, - -// ]; - -// @NgModule({ -// imports: [RouterModule.forChild(routes)], -// exports: [RouterModule] -// }) -// export class PagesRoutingModule {} diff --git a/src/app/pages/pages.component.html b/src/app/pages/pages.component.html deleted file mode 100644 index c56369e..0000000 --- a/src/app/pages/pages.component.html +++ /dev/null @@ -1 +0,0 @@ -

pages works!

diff --git a/src/app/pages/pages.component.scss b/src/app/pages/pages.component.scss deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/pages/pages.component.spec.ts b/src/app/pages/pages.component.spec.ts deleted file mode 100644 index 7a864ac..0000000 --- a/src/app/pages/pages.component.spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { PagesComponent } from './pages.component'; - -describe('PagesComponent', () => { - let component: PagesComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ PagesComponent ] - }) - .compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(PagesComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/src/app/pages/pages.component.ts b/src/app/pages/pages.component.ts deleted file mode 100644 index d8ad6cb..0000000 --- a/src/app/pages/pages.component.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -@Component({ - selector: 'app-pages', - templateUrl: './pages.component.html', - styleUrls: ['./pages.component.scss'] -}) -export class PagesComponent implements OnInit { - - constructor() { } - - ngOnInit() { - } - -} diff --git a/src/app/pages/pages.module.ts b/src/app/pages/pages.module.ts index 2282c13..9a9e5fa 100644 --- a/src/app/pages/pages.module.ts +++ b/src/app/pages/pages.module.ts @@ -1,11 +1,6 @@ import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; -import { PagesComponent } from './pages.component'; import { LoginComponent } from './login/login.component'; -import { RegisterComponent } from './register/register.component'; -// import { PagesRoutingModule } from './pages-routing.module' - - import {A11yModule} from '@angular/cdk/a11y'; import {DragDropModule} from '@angular/cdk/drag-drop'; import {PortalModule} from '@angular/cdk/portal'; @@ -48,17 +43,13 @@ import {MatToolbarModule} from '@angular/material/toolbar'; import {MatTooltipModule} from '@angular/material/tooltip'; import {MatTreeModule} from '@angular/material/tree'; import { FormGroup, FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { PersonaldataComponent } from './personaldata/personaldata.component'; import { RouterModule } from '@angular/router'; import { LockscreenComponent } from './lockscreen/lockscreen.component'; -// import { PagesRoutingModule } from './pages-routing.module'; - @NgModule({ - declarations: [PagesComponent, LoginComponent, RegisterComponent, LockscreenComponent], + declarations: [LoginComponent, LockscreenComponent], imports: [ CommonModule, - A11yModule, CdkStepperModule, CdkTableModule, @@ -70,7 +61,6 @@ import { LockscreenComponent } from './lockscreen/lockscreen.component'; MatButtonModule, MatButtonToggleModule, MatCardModule, - MatCheckboxModule, MatChipsModule, MatStepperModule, @@ -102,11 +92,9 @@ import { LockscreenComponent } from './lockscreen/lockscreen.component'; MatTreeModule, PortalModule, ScrollingModule, - FormsModule, ReactiveFormsModule, RouterModule - // PagesRoutingModule, ] }) export class PagesModule { } diff --git a/src/app/pages/personaldata/personaldata.component.html b/src/app/pages/personaldata/personaldata.component.html deleted file mode 100644 index 4e0fb3e..0000000 --- a/src/app/pages/personaldata/personaldata.component.html +++ /dev/null @@ -1,280 +0,0 @@ -
-
- - - - 安信科创 - 嘻嘻嘻嘻 -

- 不要做程序员,要做问题解决者 -

-
- - - - -
- -
- -
- 260 - 粉丝 -
-
- 180 - 关注 -
-
- 2000 - 博客 -
-
-
- - - - - - -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- 我是假数据 -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- - - - -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- - 我是假数据 -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- 我是假数据 -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- 我是假数据 -
-
-
-
- -
-
- - - -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- - 我是假数据 -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- 我是假数据 -
-
- - - -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- 我是假数据 -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- 我是假数据 -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- - - - -
-
-
-
- - - -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- 我是假数据 -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- - 我是假数据 -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- - - - -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- 我是假数据 -
-
- -
- -
-
我是假数据 - 我是假数据 -
- 我是假数据 -
-
-
- 我是假数据 -
-
-
-
-
-
-
-
diff --git a/src/app/pages/personaldata/personaldata.component.scss b/src/app/pages/personaldata/personaldata.component.scss deleted file mode 100644 index 674904d..0000000 --- a/src/app/pages/personaldata/personaldata.component.scss +++ /dev/null @@ -1,110 +0,0 @@ - -#xxx{ - display: flex; - justify-content: space-around; -} -.pages-profile { - padding: 30px; - - .profile-card { - padding: 9px; - text-align: center; - font-family: Roboto, sans-serif; - width: 500px; - height: 600px; - mat-card-content { - padding: 40px 15px; - margin: 0; - } - - .mat-card-avatar { - width: 130px; - height: 130px; - margin-bottom: 10px; - } - - .profile-user { - margin: 10px 0; - font-weight: normal; - } - - .profile-job { - margin-bottom: 20px; - color: #9e9e9e; - font-weight: 500; - } - - .profile-introduction { - margin: 0 0 1rem; - color: #757575; - } - - .profile-social { - margin: 25px 0; - - mat-icon { - margin: 0 10px; - color: rgba(66, 66, 66, .4); - } - } - - mat-card-actions { - padding: 10px; - background: #f6f9fd; - } - - .profile-card-footer { - display: flex; - justify-content: space-around; - .profile-stat-count { - display: block; - margin-bottom: 3px; - font-size: 20px; - font-weight: bold; - color: #616161; - - +span { - color: #9e9e9e; - } - } - } - - } - - .profile-board { - padding: 30px; - width: 500px; - mat-list { - padding-bottom: 20px; - } - - mat-list-item { - height: auto; - padding: 25px 0; - margin-left: -16px; - border-bottom: 1px solid #dfe0df; - - .profile-item-content { - padding: 20px 0 0 56px; - line-height: 1.571429; - color: #757575; - white-space: normal; - display: flex; - flex-wrap: wrap; - - img { - width: 100%; - max-width: 220px; - max-height: 150px; - padding: 0 20px 20px 0; - } - } - } - } - - .show-more-btn { - width: 100%; - background-color: #eee; - color: #3949ab; - } -} \ No newline at end of file diff --git a/src/app/pages/personaldata/personaldata.component.spec.ts b/src/app/pages/personaldata/personaldata.component.spec.ts deleted file mode 100644 index cf44bea..0000000 --- a/src/app/pages/personaldata/personaldata.component.spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { PersonaldataComponent } from './personaldata.component'; - -describe('PersonaldataComponent', () => { - let component: PersonaldataComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ PersonaldataComponent ] - }) - .compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(PersonaldataComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/src/app/pages/personaldata/personaldata.component.ts b/src/app/pages/personaldata/personaldata.component.ts deleted file mode 100644 index 28d9b93..0000000 --- a/src/app/pages/personaldata/personaldata.component.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -@Component({ - selector: 'app-personaldata', - templateUrl: './personaldata.component.html', - styleUrls: ['./personaldata.component.scss'] -}) -export class PersonaldataComponent implements OnInit { - - constructor() { } - - ngOnInit() { - } - -} diff --git a/src/app/pages/register/register.component.html b/src/app/pages/register/register.component.html deleted file mode 100644 index 4439983..0000000 --- a/src/app/pages/register/register.component.html +++ /dev/null @@ -1,81 +0,0 @@ - \ No newline at end of file diff --git a/src/app/pages/register/register.component.scss b/src/app/pages/register/register.component.scss deleted file mode 100644 index 32cd9ee..0000000 --- a/src/app/pages/register/register.component.scss +++ /dev/null @@ -1,88 +0,0 @@ -.login { - width: 100%; - height: 100%; - // background: url('../../../assets/images/bg_login.jpg'); - - .loginbox { - width: 100%; - height: 100%; - background-color: #000; - background: rgba(0,0,0,0.5);/*盒子背景透明*/ - // opacity: 0.5; - position: relative; - } - - .intro { - width: 650px; - // height: 350px; - position: fixed; - top:35%; - left: 15%; - p { - font-size: 36px; - color:white; - margin-bottom: 35px; - } - span { - font-size: 16px; - color:white; - opacity: 0.5; - } - } - - .card{ - width: 460px; - height: 100%; - padding-left: 20px; - background-color: #fff; - position: absolute; - right: 0; - p { - width: 100%; - margin: 18px 0; - } - .cardheader{ - font-size: 26px; - font-weight: 500; - } - - } - -} - -.example-container { - display: flex; - flex-direction: column; -} - -.example-container > * { - width: 100%; -} -.loginbtn { - margin-top: 18px; - height: 35px; - background-color:#039be5; - border-radius: 15px; - color: #fff;; -} -.mat-card { - box-shadow: 0 0 0; - margin-top: 70px; -} - -.applyfor { - font-size: 16px; - a { - color: #039be5; - } -} - -.website { - font-size: 14px; - text-align: center; - margin-top: 50px; -} -.alert-danger { - font-size: 14px; - color: red; -} \ No newline at end of file diff --git a/src/app/pages/register/register.component.spec.ts b/src/app/pages/register/register.component.spec.ts deleted file mode 100644 index 6c19551..0000000 --- a/src/app/pages/register/register.component.spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { RegisterComponent } from './register.component'; - -describe('RegisterComponent', () => { - let component: RegisterComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ RegisterComponent ] - }) - .compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(RegisterComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/src/app/pages/register/register.component.ts b/src/app/pages/register/register.component.ts deleted file mode 100644 index 6f9552f..0000000 --- a/src/app/pages/register/register.component.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -@Component({ - selector: 'app-register', - templateUrl: './register.component.html', - styleUrls: ['./register.component.scss'] -}) -export class RegisterComponent implements OnInit { - - constructor() { } - - ngOnInit() { - } - - onSubmit(e){ - // console.log(e) - } - -} diff --git a/src/app/tabbar/tabbar.component.html b/src/app/tabbar/tabbar.component.html index 10d232e..d6a537f 100644 --- a/src/app/tabbar/tabbar.component.html +++ b/src/app/tabbar/tabbar.component.html @@ -4,18 +4,13 @@ * @Author: sueRimn * @Date: 2020-12-10 10:21:40 * @LastEditors: sueRimn - * @LastEditTime: 2020-12-10 19:47:19 + * @LastEditTime: 2020-12-11 10:01:47 -->

欢迎登录消防救援考核系统

- - - -
- -
- - -
- -
- - -
-
- - +
+
+ +
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
-
- - -
- - + + + +
- + - + - + - - + + + + + + + + + + + + - + -
姓名用户姓名 {{element.realName}} 身份证号 {{element.name}} 职务 - - {{item.name}} - - 消防救援站上海总队 手机号13562321997创建时间{{element.creationTime | date:'yyyy-MM-dd'}}操作 - assessment查看学习记录 - cached重置密码 - edit修改 - remove_circle禁用 - remove_circle禁用 - delete删除 + 重置密码 + 编辑 + 禁用 + 禁用 + 删除
- - + + + +
diff --git a/src/app/ui/enterpriseuser/enterpriseuser.component.scss b/src/app/ui/enterpriseuser/enterpriseuser.component.scss index e54613b..71c0551 100644 --- a/src/app/ui/enterpriseuser/enterpriseuser.component.scss +++ b/src/app/ui/enterpriseuser/enterpriseuser.component.scss @@ -1,16 +1,17 @@ table { - width: 100%; + width: 100%; + text-align: center; + .cdk-header-cell { text-align: center; - .cdk-header-cell { - text-align: center; - } } -.maginleft { - margin-left: 5px; } - - +.content { + width: 100%; + height: 100%; + overflow: hidden; + background: #F2F5F6; +} .header { width: 100%; padding: 10px; @@ -25,39 +26,29 @@ table { align-items:center; justify-content:center; .queryField { - margin: 0 15px; + margin: 0 25px; font-size: 14px; input { - width: 280px; - height: 22px; - line-height: 22px; - // border-radius: 3px; + width: 160px; + height: 34px; + line-height: 34px; + border-radius: 5px; + padding-left: 5px; + outline: none; + border: 1px solid rgb(226, 211, 211); } + button { color: #fff; } } - .btnbox{ - float: right; - } - } //queryBox } .operationSpan{ - margin: 0 5px; - .spanbtn:hover{ - text-decoration: underline; + margin: 0 10px; + .spanbtn { + font-weight: 550; cursor: pointer; } - .blue{ - color:rgb(24, 144, 255) ; - } - .red{ - color: rgb(245, 34, 45); - } - .gray{ - color: gray; - } -} -.icon{ - font-size: 18px; - vertical-align: top; + .green{ color: #04ced1; } + .red{ color: #FF8678 } + .gray{ color: gray; } } diff --git a/src/app/ui/enterpriseuser/enterpriseuser.component.ts b/src/app/ui/enterpriseuser/enterpriseuser.component.ts index e5c7af0..67a2486 100644 --- a/src/app/ui/enterpriseuser/enterpriseuser.component.ts +++ b/src/app/ui/enterpriseuser/enterpriseuser.component.ts @@ -8,6 +8,7 @@ import { AddEnterpriserUser } from './addenterpriseuser.component' import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; import {FormControl} from '@angular/forms'; import { Router,ActivatedRoute } from '@angular/router' + @Component({ selector: 'app-enterpriseuser', templateUrl: './enterpriseuser.component.html', @@ -21,15 +22,12 @@ export class EnterpriseuserComponent implements OnInit { this.initData() } - displayedColumns: string[] = ['name', 'identitycard', 'post', 'operation',]; + displayedColumns: string[] = [ 'name','identitycard', 'post', 'tel', 'time', 'operation',]; dataSource:any; //所有企业用户 - userLogin:string; //搜索账号 - userName:string; //搜索名称 - creditcode:string//统一社会信用代码 - name:any //姓名 identityCard:any //身份证 + fireTeam:any; //消防救援站 //分页 @ViewChild(MatPaginator, {static: true}) @@ -95,9 +93,9 @@ export class EnterpriseuserComponent implements OnInit { //跳转学习记录 openRecord(e){ - // this.router.navigate([`/home/statistics`],{queryParams:{'name':`${e.realName}`,'id':`${e.name}`}}) window.open(`/home/statistics?name=${e.realName}&id=${e.name}`) } + //创建用户 open(){ let dialogRef = this.dialog.open(AddEnterpriserUser, {//调用open方法打开对话框并且携带参数过去 @@ -197,7 +195,6 @@ export class EnterpriseuserComponent implements OnInit { }) } - //删除 delete (e) { let isTrue = confirm('您确定要删除吗') diff --git a/src/app/ui/login/login.component.html b/src/app/ui/login/login.component.html deleted file mode 100644 index adb4633..0000000 --- a/src/app/ui/login/login.component.html +++ /dev/null @@ -1,29 +0,0 @@ -
-
- -
-
- -
- account_box - - - -
- -
- lock - - - -
- -
- {{errmsg}} -
- - -
-
- -
diff --git a/src/app/ui/login/login.component.scss b/src/app/ui/login/login.component.scss deleted file mode 100644 index c1dc33e..0000000 --- a/src/app/ui/login/login.component.scss +++ /dev/null @@ -1,45 +0,0 @@ -.header { - margin: 0 auto; - width: 50px; - height: 50px; - border-radius: 50%; - img { - width: 100%; - height: 100%; - } -} - -.content { - margin: 20px 0; - text-align: center; - .alert-danger { - text-align: left; - font-size: 14px; - color: red; - } - .loginBtn { - width: 90%; - border-radius: 5px; - margin-top: 10px; - } -} -.input { - margin-left: 22px; - position: relative; -} -.icon { - width: 24px; - color: #666; - font-size: 24px; - position: absolute; - top: 17px; - left: -24px; -} -.icon2 { - width: 24px; - color: #666; - font-size: 24px; - position: absolute; - top: 17px; - left: -24px; -} \ No newline at end of file diff --git a/src/app/ui/login/login.component.ts b/src/app/ui/login/login.component.ts deleted file mode 100644 index fc2690a..0000000 --- a/src/app/ui/login/login.component.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { HttpClient } from '@angular/common/http'; -import { IsLoginService } from '../../is-login.service' -import { CacheTokenService } from '../../http-interceptors/cache-token.service' -import { MatDialogRef } from '@angular/material/dialog'; -import { MatSnackBarConfig, MatSnackBar } from '@angular/material/snack-bar'; - -@Component({ - selector: 'app-login', - templateUrl: './login.component.html', - styleUrls: ['./login.component.scss'] -}) -export class LoginComponent implements OnInit { - - constructor(private http:HttpClient,private isLogin:IsLoginService,private token:CacheTokenService,public dialogRef: MatDialogRef,public snackBar: MatSnackBar) { } - - ngOnInit(): void { - - } - - errmsg:any; //err信息 - - //登录 - onSubmit (e) { - let loginMsg = { - name: e.name, - password: e.password - } - this.http.post('/api/Account/SignIn',loginMsg).subscribe((data:any)=>{ - sessionStorage.setItem("token",data.token); - sessionStorage.setItem("refreshToken",data.refreshToken); - this.token.startUp(); //登陆成功启动定时器刷新token - const config = new MatSnackBarConfig(); - config.verticalPosition = 'top'; - config.duration = 3000 - this.snackBar.open('登陆成功','确定',config); - this.dialogRef.close(data); - },(err) => {this.errmsg = err}) - - } - -} diff --git a/src/app/ui/teacherManagement/enterpriseuser.component.html b/src/app/ui/teacherManagement/enterpriseuser.component.html index 651eba4..b2e9ba1 100644 --- a/src/app/ui/teacherManagement/enterpriseuser.component.html +++ b/src/app/ui/teacherManagement/enterpriseuser.component.html @@ -1,68 +1,72 @@ -
-
-
- -
- -
- -
- - -
- -
- - -
-
- - +
+
+ +
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+
-
- - -
- - - - - - - - + + + +
姓名{{element.realName}}
+ - + - + + + + + + - - + + - + + + + + + - + -
帐号用户帐号 {{element.name}} 用户姓名{{element.realName}}职务 - - {{item.name}} - - 消防救援站上海总队 创建时间{{element.creationTime | date:'yyyy-MM-dd'}}操作 - - cached重置密码 - edit修改 - remove_circle禁用 - remove_circle禁用 - delete删除 + 重置密码 + 编辑 + 禁用 + 禁用 + 删除
- - + + + +
diff --git a/src/app/ui/teacherManagement/enterpriseuser.component.scss b/src/app/ui/teacherManagement/enterpriseuser.component.scss index e54613b..71c0551 100644 --- a/src/app/ui/teacherManagement/enterpriseuser.component.scss +++ b/src/app/ui/teacherManagement/enterpriseuser.component.scss @@ -1,16 +1,17 @@ table { - width: 100%; + width: 100%; + text-align: center; + .cdk-header-cell { text-align: center; - .cdk-header-cell { - text-align: center; - } } -.maginleft { - margin-left: 5px; } - - +.content { + width: 100%; + height: 100%; + overflow: hidden; + background: #F2F5F6; +} .header { width: 100%; padding: 10px; @@ -25,39 +26,29 @@ table { align-items:center; justify-content:center; .queryField { - margin: 0 15px; + margin: 0 25px; font-size: 14px; input { - width: 280px; - height: 22px; - line-height: 22px; - // border-radius: 3px; + width: 160px; + height: 34px; + line-height: 34px; + border-radius: 5px; + padding-left: 5px; + outline: none; + border: 1px solid rgb(226, 211, 211); } + button { color: #fff; } } - .btnbox{ - float: right; - } - } //queryBox } .operationSpan{ - margin: 0 5px; - .spanbtn:hover{ - text-decoration: underline; + margin: 0 10px; + .spanbtn { + font-weight: 550; cursor: pointer; } - .blue{ - color:rgb(24, 144, 255) ; - } - .red{ - color: rgb(245, 34, 45); - } - .gray{ - color: gray; - } -} -.icon{ - font-size: 18px; - vertical-align: top; + .green{ color: #04ced1; } + .red{ color: #FF8678 } + .gray{ color: gray; } } diff --git a/src/app/ui/teacherManagement/enterpriseuser.component.ts b/src/app/ui/teacherManagement/enterpriseuser.component.ts index d49e7e7..d70cf9c 100644 --- a/src/app/ui/teacherManagement/enterpriseuser.component.ts +++ b/src/app/ui/teacherManagement/enterpriseuser.component.ts @@ -21,15 +21,12 @@ export class TeacherManagementComponent implements OnInit { this.initData() } - displayedColumns: string[] = ['name', 'identitycard', 'post', 'operation',]; + displayedColumns: string[] = ['identitycard', 'name', 'post', 'time', 'operation',]; dataSource:any; //所有企业用户 - userLogin:string; //搜索账号 - userName:string; //搜索名称 - creditcode:string//统一社会信用代码 - - name:any //姓名 - identityCard:any //身份证 + name:any //用户姓名 + identityCard:any //用户账号 + fireTeam:any; //消防救援站 //分页 @ViewChild(MatPaginator, {static: true}) @@ -64,7 +61,6 @@ export class TeacherManagementComponent implements OnInit { RoleType: '1', } this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{ - // console.log(666,data) this.length = data.totalCount this.pageSize = data.pageSize this.pageEvent.pageIndex = 0 @@ -93,7 +89,7 @@ export class TeacherManagementComponent implements OnInit { this.name = '' this.initData() } - + //创建教员 open(){ let dialogRef = this.dialog.open(AddTeacher, {//调用open方法打开对话框并且携带参数过去 @@ -143,16 +139,6 @@ export class TeacherManagementComponent implements OnInit { }) } - //查看企业信息 - see (e) { - // this.http.get(`/api/CompanyUsers/${e.name}`).subscribe( - // data=> { - // let dialogRef = this.dialog.open(seeTeacher, {data}); - // dialogRef.afterClosed().subscribe(); - // } - // ) - } - //启用 enabled (e) { let date = new Date() @@ -193,7 +179,6 @@ export class TeacherManagementComponent implements OnInit { }) } - //删除 delete (e) { let isTrue = confirm('您确定要删除吗') diff --git a/src/app/ui/ui-routing.module.ts b/src/app/ui/ui-routing.module.ts index 75e8990..987b642 100644 --- a/src/app/ui/ui-routing.module.ts +++ b/src/app/ui/ui-routing.module.ts @@ -17,7 +17,9 @@ const routes: Routes = [ { path: 'looktest', component:LookOverTestComponent }, { path: 'statisticAnalysis', component:StatisticAnalysisComponent }, { path: 'joinExam', component:JoinExamComponent }, - { path: 'testRecords', component:TestRecordsComponent } + { path: 'testRecords', component:TestRecordsComponent }, + { path: 'teachear', component:TeacherManagementComponent }, //管理员 教员页面 + { path: 'examinee', component:EnterpriseuserComponent }, //管理员 考生页面 ] @NgModule({ imports: [RouterModule.forChild(routes)], diff --git a/src/app/ui/ui.module.ts b/src/app/ui/ui.module.ts index d2ff06f..e911908 100644 --- a/src/app/ui/ui.module.ts +++ b/src/app/ui/ui.module.ts @@ -17,7 +17,6 @@ import {MatCardModule} from '@angular/material/card'; import {MatCheckboxModule} from '@angular/material/checkbox'; import {MatChipsModule} from '@angular/material/chips'; import {MatStepperModule} from '@angular/material/stepper'; -// import {MatDatepickerModule} from '@angular/material/datepicker'; import {MatDialogModule} from '@angular/material/dialog'; import {MatDividerModule} from '@angular/material/divider'; import {MatExpansionModule} from '@angular/material/expansion'; @@ -45,14 +44,12 @@ import {MatTreeModule} from '@angular/material/tree'; import { ReactiveFormsModule, FormsModule } from '@angular/forms'; import { MatFormFieldModule } from '@angular/material/form-field'; import { MatPaginatorIntl } from '@angular/material/paginator'; -import { PersonaldataComponent } from '../pages/personaldata/personaldata.component'; import { ChangepasswordComponent } from './changepassword/changepassword.component'; import { SizePipe , NamePipe,NamePipe2, NamePipe3, testState} from '../pipes/size.pipe'; import {ConfirmpswDirective} from './changepassword/equal-validator.directive'; import { FileUploadModule } from 'ng2-file-upload' import { AllFileComponent, ViewDetails, FolderDialog } from './all-file/all-file.component'; import { ChangeuserdataComponent } from './changeuserdata/changeuserdata.component'; -import { LoginComponent } from './login/login.component'; import { IsLoginService } from '../is-login.service'; import { UploadFilesComponent } from './upload-files/upload-files.component'; import {AddEnterpriserUser} from './enterpriseuser/addenterpriseuser.component'; @@ -69,7 +66,7 @@ import { JoinExamComponent } from './join-exam/join-exam.component'; import { TestRecordsComponent } from './test-records/test-records.component' import { NzDatePickerModule } from 'ng-zorro-antd/date-picker'; @NgModule({ - declarations: [FolderDialog,ViewDetails,PersonaldataComponent, ChangepasswordComponent,SizePipe,NamePipe,NamePipe2,NamePipe3,ConfirmpswDirective, AllFileComponent, ChangeuserdataComponent, LoginComponent, UploadFilesComponent,AddEnterpriserUser,EnterpriseuserComponent,editenterpriseuser,seeenterpriseuser,TeacherManagementComponent,editTeacher,AddTeacher,seeTeacher, LearningRecordDetailsComponent, EhartsStatisticsComponent, CreateExamComponent, LookOverTestComponent, StatisticAnalysisComponent, JoinExamComponent, TestRecordsComponent,testState,CreateDialog], + declarations: [FolderDialog,ViewDetails,ChangepasswordComponent,SizePipe,NamePipe,NamePipe2,NamePipe3,ConfirmpswDirective, AllFileComponent, ChangeuserdataComponent, UploadFilesComponent,AddEnterpriserUser,EnterpriseuserComponent,editenterpriseuser,seeenterpriseuser,TeacherManagementComponent,editTeacher,AddTeacher,seeTeacher, LearningRecordDetailsComponent, EhartsStatisticsComponent, CreateExamComponent, LookOverTestComponent, StatisticAnalysisComponent, JoinExamComponent, TestRecordsComponent,testState,CreateDialog], imports: [ NzDatePickerModule, @@ -89,7 +86,6 @@ import { NzDatePickerModule } from 'ng-zorro-antd/date-picker'; MatCheckboxModule, MatChipsModule, MatStepperModule, - // MatDatepickerModule, MatDialogModule, MatDividerModule, MatExpansionModule, @@ -117,7 +113,6 @@ import { NzDatePickerModule } from 'ng-zorro-antd/date-picker'; MatTreeModule, PortalModule, ScrollingModule, - ReactiveFormsModule, FormsModule, FileUploadModule diff --git a/src/assets/images/login.gif b/src/assets/images/login.gif deleted file mode 100644 index 91438e2..0000000 Binary files a/src/assets/images/login.gif and /dev/null differ diff --git a/src/assets/images/login.png b/src/assets/images/login.png deleted file mode 100644 index 4252287..0000000 Binary files a/src/assets/images/login.png and /dev/null differ diff --git a/src/assets/images/loginBGC.png b/src/assets/images/loginBGC.png deleted file mode 100644 index 42677c3..0000000 Binary files a/src/assets/images/loginBGC.png and /dev/null differ diff --git a/src/assets/images/loginBackground.jpg b/src/assets/images/loginBackground.jpg deleted file mode 100644 index 72a0a3c..0000000 Binary files a/src/assets/images/loginBackground.jpg and /dev/null differ diff --git a/src/assets/images/loginBackground.png b/src/assets/images/loginBackground.png new file mode 100644 index 0000000..ba9ab6d Binary files /dev/null and b/src/assets/images/loginBackground.png differ diff --git a/src/assets/images/loginHeader.png b/src/assets/images/loginHeader.png new file mode 100644 index 0000000..8db0891 Binary files /dev/null and b/src/assets/images/loginHeader.png differ diff --git a/src/index.html b/src/index.html index b6b8eee..1b14057 100644 --- a/src/index.html +++ b/src/index.html @@ -2,12 +2,11 @@ - 灭火救援指挥培训系统 + 消防救援单位信息考核系统 - diff --git a/src/styles.scss b/src/styles.scss index ab2c0a7..7ae1033 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -86,4 +86,11 @@ table td.mat-footer-cell:last-of-type{ .mat-drawer-container{ background-color: none; +} + +//可展开面板按钮颜色 +#createtestscore{ + .mat-expansion-indicator::after { + color: #333333; + } } \ No newline at end of file