|
|
|
@ -1,59 +1,62 @@
|
|
|
|
|
<div class="content"> |
|
|
|
|
<div class="header"> |
|
|
|
|
<form #form="ngForm"> |
|
|
|
|
<div class="queryBox"> |
|
|
|
|
|
|
|
|
|
<div class="queryField"style="margin-right: 90px;"> |
|
|
|
|
<button type="button" mat-raised-button color="primary" (click)='open()'>创建教员</button> |
|
|
|
|
<div class="queryField"> |
|
|
|
|
<label style="margin-right: 10px;">用户账号:</label> |
|
|
|
|
<input type="text" [(ngModel)]="identityCard" name="identityCard" autocomplete="off" placeholder="请输入用户账号"> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="queryField"> |
|
|
|
|
<label style="margin-right: 10px;">姓名:</label> |
|
|
|
|
<input type="text" [(ngModel)]="name" name="name" autocomplete="off"> |
|
|
|
|
<label style="margin-right: 10px;">用户姓名:</label> |
|
|
|
|
<input type="text" [(ngModel)]="name" name="name" autocomplete="off" placeholder="请输入用户姓名"> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="queryField"> |
|
|
|
|
<label style="margin-right: 10px;">帐号:</label> |
|
|
|
|
<input type="text" [(ngModel)]="identityCard" name="identityCard" autocomplete="off"> |
|
|
|
|
<label style="margin-right: 10px;">消防救援站:</label> |
|
|
|
|
<input type="text" [(ngModel)]="fireTeam" name="fireTeam" autocomplete="off" placeholder="请选择消防救援站"> |
|
|
|
|
</div> |
|
|
|
|
<div class="btnbox" style="margin-left: 90px;"> |
|
|
|
|
<button mat-raised-button color="primary" (click)='initData()'>查询</button> |
|
|
|
|
<button mat-raised-button style="margin-left: 10px;" type="button" (click)='empty()'>重置</button> |
|
|
|
|
<div class="queryField"> |
|
|
|
|
<button mat-raised-button (click)='initData()' style="background-color: #07CDCF;">查询</button> |
|
|
|
|
<button mat-raised-button (click)='empty()' style="margin-left: 10px; background-color: #FF8678;">重置</button> |
|
|
|
|
</div> |
|
|
|
|
<div class="queryField"> |
|
|
|
|
<button mat-raised-button (click)='open()' style="background-color: #07CDCF;">新增用户</button> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</form> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8"> |
|
|
|
|
<table mat-table [dataSource]="dataSource"> |
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="identitycard"> |
|
|
|
|
<th mat-header-cell *matHeaderCellDef>用户帐号</th> |
|
|
|
|
<td mat-cell *matCellDef="let element">{{element.name}}</td> |
|
|
|
|
</ng-container> |
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="name"> |
|
|
|
|
<th mat-header-cell *matHeaderCellDef>姓名</th> |
|
|
|
|
<th mat-header-cell *matHeaderCellDef>用户姓名</th> |
|
|
|
|
<td mat-cell *matCellDef="let element">{{element.realName}}</td> |
|
|
|
|
</ng-container> |
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="identitycard"> |
|
|
|
|
<th mat-header-cell *matHeaderCellDef>帐号</th> |
|
|
|
|
<td mat-cell *matCellDef="let element">{{element.name}}</td> |
|
|
|
|
<ng-container matColumnDef="post"> |
|
|
|
|
<th mat-header-cell *matHeaderCellDef>消防救援站</th> |
|
|
|
|
<td mat-cell *matCellDef="let element">上海总队</td> |
|
|
|
|
</ng-container> |
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="post"> |
|
|
|
|
<th mat-header-cell *matHeaderCellDef>职务</th> |
|
|
|
|
<td mat-cell *matCellDef="let element"> |
|
|
|
|
<span *ngFor="let item of element.posts"> |
|
|
|
|
{{item.name}} |
|
|
|
|
</span> |
|
|
|
|
</td> |
|
|
|
|
<ng-container matColumnDef="time"> |
|
|
|
|
<th mat-header-cell *matHeaderCellDef>创建时间</th> |
|
|
|
|
<td mat-cell *matCellDef="let element">{{element.creationTime | date:'yyyy-MM-dd'}}</td> |
|
|
|
|
</ng-container> |
|
|
|
|
|
|
|
|
|
<ng-container matColumnDef="operation"> |
|
|
|
|
<th mat-header-cell *matHeaderCellDef>操作</th> |
|
|
|
|
<td mat-cell *matCellDef="let element"> |
|
|
|
|
<!-- <span class="operationSpan"><mat-icon class="icon">assessment</mat-icon><span class="spanbtn blue">查看学习记录</span></span> --> |
|
|
|
|
<span class="operationSpan"><mat-icon class="icon">cached</mat-icon><span class="spanbtn blue" (click)="reset(element)">重置密码</span></span> |
|
|
|
|
<span class="operationSpan"><mat-icon class="icon">edit</mat-icon><span class="spanbtn blue" (click)="edit(element)">修改</span></span> |
|
|
|
|
<span *ngIf="element.enabled" class="operationSpan"><mat-icon class="icon" style="color: rgb(245, 34, 45);">remove_circle</mat-icon><span class="spanbtn blue" (click)="noEnabled(element)">禁用</span></span> |
|
|
|
|
<span *ngIf="!element.enabled" class="operationSpan"><mat-icon class="icon" style="color: gray;">remove_circle</mat-icon><span class="spanbtn gray" (click)="enabled(element)">禁用</span></span> |
|
|
|
|
<span class="operationSpan"><mat-icon class="icon">delete</mat-icon><span class="spanbtn red" (click)="delete(element)">删除</span></span> |
|
|
|
|
<span class="operationSpan"><span class="spanbtn green" (click)="reset(element)">重置密码</span></span> |
|
|
|
|
<span class="operationSpan"><span class="spanbtn green" (click)="edit(element)">编辑</span></span> |
|
|
|
|
<span *ngIf="element.enabled" class="operationSpan"><span class="spanbtn red" (click)="noEnabled(element)">禁用</span></span> |
|
|
|
|
<span *ngIf="!element.enabled" class="operationSpan"><span class="spanbtn gray" (click)="enabled(element)">禁用</span></span> |
|
|
|
|
<span class="operationSpan"><span class="spanbtn red" (click)="delete(element)">删除</span></span> |
|
|
|
|
</td> |
|
|
|
|
</ng-container> |
|
|
|
|
|
|
|
|
@ -66,3 +69,4 @@
|
|
|
|
|
(page)="chagePage($event)"> |
|
|
|
|
</mat-paginator> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|