|
|
|
@ -12,9 +12,11 @@
|
|
|
|
|
<div class="queryField ordiv"> |
|
|
|
|
<label style="margin-right: 10px;">消防救援站:</label> |
|
|
|
|
<mat-form-field> |
|
|
|
|
<input readonly matInput placeholder="请选择消防救援站" [(ngModel)]="selectOrganizationIName" name="selectOrganizationIName" (focus)="openorganizationbox()"> |
|
|
|
|
<input readonly matInput placeholder="请选择消防救援站" [(ngModel)]="selectOrganizationIName" |
|
|
|
|
name="selectOrganizationIName" (focus)="openorganizationbox()"> |
|
|
|
|
</mat-form-field> |
|
|
|
|
<mat-checkbox style="margin-left: 5px;" [(ngModel)]="HasChildrenOrganization" name="HasChildrenOrganization">包含下级</mat-checkbox> |
|
|
|
|
<mat-checkbox style="margin-left: 5px;" [(ngModel)]="HasChildrenOrganization" |
|
|
|
|
name="HasChildrenOrganization">包含下级</mat-checkbox> |
|
|
|
|
|
|
|
|
|
<div class="organizationbox" *ngIf="isorganizationbox"> |
|
|
|
|
<div (click)="closediv()" class="closediv"><mat-icon>clear</mat-icon></div> |
|
|
|
@ -23,7 +25,8 @@
|
|
|
|
|
<button type="button" mat-icon-button disabled></button> |
|
|
|
|
<li>{{node.name}}</li> |
|
|
|
|
</mat-tree-node> |
|
|
|
|
<mat-tree-node *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding (click)='add(node)' class="organizationlist"> |
|
|
|
|
<mat-tree-node *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding (click)='add(node)' |
|
|
|
|
class="organizationlist"> |
|
|
|
|
<button type="button" mat-icon-button matTreeNodeToggle [attr.aria-label]="'toggle ' + node.name"> |
|
|
|
|
<mat-icon class="mat-icon-rtl-mirror"> |
|
|
|
|
{{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}} |
|
|
|
@ -78,7 +81,8 @@
|
|
|
|
|
</mat-option> |
|
|
|
|
</mat-select> |
|
|
|
|
</mat-form-field> |
|
|
|
|
<mat-checkbox style="margin-left: 5px;" [(ngModel)]="HasChildrenPlanLevel" name="HasChildrenPlanLevel">包含下级</mat-checkbox> |
|
|
|
|
<mat-checkbox style="margin-left: 5px;" [(ngModel)]="HasChildrenPlanLevel" |
|
|
|
|
name="HasChildrenPlanLevel">包含下级</mat-checkbox> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
@ -155,9 +159,12 @@
|
|
|
|
|
<ng-container matColumnDef="operation"> |
|
|
|
|
<th mat-header-cell *matHeaderCellDef>操作</th> |
|
|
|
|
<td mat-cell *matCellDef="let element"> |
|
|
|
|
<label style="color: #0000FF;cursor: pointer;" (click)='toExamine(element)' *ngIf="element.auditStatus!=4">预案审核</label> |
|
|
|
|
<label style="color: #0000FF;margin-left: 10px;cursor: pointer;" (click)='openReserve(element)' *ngIf="element.auditStatus==2">预案公开</label> |
|
|
|
|
<label style="color: #0000FF;margin-left: 10px;cursor: pointer;" (click)='closeReserve(element)' *ngIf="element.auditStatus==2">预案取消公开</label> |
|
|
|
|
<label style="color: #0000FF;cursor: pointer;" (click)='toExamine(element)' |
|
|
|
|
*ngIf="element.auditStatus!=4">预案审核</label> |
|
|
|
|
<label style="color: #0000FF;margin-left: 10px;cursor: pointer;" (click)='openReserve(element)' |
|
|
|
|
*ngIf="element.auditStatus==2">预案公开</label> |
|
|
|
|
<label style="color: #0000FF;margin-left: 10px;cursor: pointer;" (click)='closeReserve(element)' |
|
|
|
|
*ngIf="element.auditStatus==2">预案取消公开</label> |
|
|
|
|
<label style="color: #999;" *ngIf="element.auditStatus==4">预案已驳回</label> |
|
|
|
|
</td> |
|
|
|
|
</ng-container> |
|
|
|
@ -165,9 +172,7 @@
|
|
|
|
|
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> |
|
|
|
|
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr> |
|
|
|
|
</table> |
|
|
|
|
<mat-paginator [length]="length" |
|
|
|
|
[pageSize]="pageSize" |
|
|
|
|
[pageSizeOptions]="pageSizeOptions" |
|
|
|
|
<mat-paginator [length]="length" [pageSize]="pageSize" [pageSizeOptions]="pageSizeOptions" |
|
|
|
|
(page)="chagePage($event)"> |
|
|
|
|
</mat-paginator> |
|
|
|
|
</div> |
|
|
|
|