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 @@
-
+
-
-
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 @@
-
+
-
arrow_drop_down_circle
-
\ 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 @@
-
-
-
-
-
- 安信科创
- 嘻嘻嘻嘻
-
- 不要做程序员,要做问题解决者
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
- 我是假数据
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
-
![]()
- 我是假数据
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
- 我是假数据
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
- 我是假数据
-
-
-
-
-
-
-
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
-
![]()
- 我是假数据
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
- 我是假数据
-
-
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
- 我是假数据
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
- 我是假数据
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
-
-
-
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
- 我是假数据
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
-
![]()
- 我是假数据
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
- 我是假数据
-
-
-
-
-
![]()
-
-
我是假数据
- 我是假数据
-
-
我是假数据
-
-
-
- 我是假数据
-
-
-
-
-
-
-
-
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 @@
-
-
-
-
-
北京安信科创有限公司
-
北京安信科创软件有限公司作为中国应急服务领跑者,于2006年进入消防救援领域,是一家专注于应急领域仿真培训演练与应急数据预判领域的软件服务供应商。安信主要利用大数据与虚拟现实技术实现对消防、公安、机场相关安防人员与企业安全监管人员的仿真培训与考核,致力于为我国应急产业的发展构建更美好的未来。目前,安信的业务遍布全国20多个省份和地区,服务全国将近四分之一以上的人口
-
-
-
-
-
-
-
\ 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
-->
欢迎登录消防救援考核系统
-
-
-