@ -0,0 +1 @@
|
||||
<p>examiner-index works!</p> |
@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
||||
import { ExaminerIndexComponent } from './examiner-index.component'; |
||||
|
||||
describe('ExaminerIndexComponent', () => { |
||||
let component: ExaminerIndexComponent; |
||||
let fixture: ComponentFixture<ExaminerIndexComponent>; |
||||
|
||||
beforeEach(async(() => { |
||||
TestBed.configureTestingModule({ |
||||
declarations: [ ExaminerIndexComponent ] |
||||
}) |
||||
.compileComponents(); |
||||
})); |
||||
|
||||
beforeEach(() => { |
||||
fixture = TestBed.createComponent(ExaminerIndexComponent); |
||||
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
||||
}); |
||||
|
||||
it('should create', () => { |
||||
expect(component).toBeTruthy(); |
||||
}); |
||||
}); |
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-examiner-index', |
||||
templateUrl: './examiner-index.component.html', |
||||
styleUrls: ['./examiner-index.component.scss'] |
||||
}) |
||||
export class ExaminerIndexComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
|
||||
ngOnInit(): void { |
||||
} |
||||
|
||||
} |
@ -1,30 +1,39 @@
|
||||
<mat-toolbar style="background-color: #3b8cff;"> |
||||
<!-- |
||||
* @Descripttion: |
||||
* @version: |
||||
* @Author: sueRimn |
||||
* @Date: 2020-12-10 10:21:40 |
||||
* @LastEditors: sueRimn |
||||
* @LastEditTime: 2020-12-10 19:47:19 |
||||
--> |
||||
<mat-toolbar style="background-color:#FFFFFF;height: 60px;"> |
||||
|
||||
<!-- <mat-toolbar> --> |
||||
<p style="color: white;border-bottom: 3px solid #fff;border-radius: 3px; font-size: 16px;padding: 0 4px;">考核系统</p> |
||||
<p>欢迎登录消防救援考核系统</p> |
||||
|
||||
<!-- 未登录状态 --> |
||||
<!-- <button mat-icon-button class="login" *ngIf="!isLogin.isLogin" (click)='login()'> |
||||
<mat-icon>account_circle</mat-icon> |
||||
</button> --> |
||||
|
||||
<span style="position: absolute;right:100px;color: white;font-size: 16px;">欢迎您,{{realName}}</span> |
||||
|
||||
<!-- 已登录状态 --> |
||||
<button mat-icon-button [matMenuTriggerFor]="appMenu" class="login"> |
||||
<button mat-icon-button class="login"> |
||||
<mat-icon>account_circle</mat-icon> |
||||
</button> |
||||
<span style="position: absolute;right:80px;color: #1E2323;font-size: 16px;">用户名:{{realName}}<mat-icon [matMenuTriggerFor]="appMenu" style="color: #1E2323;position: relative;top: 8px;cursor: pointer;">keyboard_arrow_down</mat-icon></span> |
||||
<mat-menu #appMenu="matMenu"> |
||||
<!-- <button mat-menu-item (click)='changeUserData()'> |
||||
<mat-icon>perm_identity</mat-icon> |
||||
<span>修改资料</span> |
||||
</button> --> |
||||
<button mat-menu-item (click)='changPassword()'> |
||||
<mat-icon>verified_user</mat-icon> |
||||
<span>修改密码</span> |
||||
<button mat-menu-item > |
||||
<img style="width: 16px;height: 18px;position: relative;top: 2px;" src="../../assets/images/uppsd.png"> |
||||
<span style="margin-left: 5px;">修改密码</span> |
||||
</button> |
||||
<button mat-menu-item (click)='signOut()'> |
||||
<mat-icon>power_settings_new</mat-icon> |
||||
<span>退出系统</span> |
||||
<img style="width: 16px;height: 18px;position: relative;top: 2px;" src="../../assets/images/sign.png"> |
||||
<span style="margin-left: 5px;">安全退出</span> |
||||
</button> |
||||
</mat-menu> |
||||
|
||||
|
After Width: | Height: | Size: 409 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 357 B |
Before Width: | Height: | Size: 97 KiB After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 97 KiB |
After Width: | Height: | Size: 418 B |
After Width: | Height: | Size: 633 B |
After Width: | Height: | Size: 400 B |