|
|
|
@ -9,15 +9,29 @@
|
|
|
|
|
<input matInput placeholder="请输入单位名称" name="companyName" [(ngModel)]="companyName" autocomplete="off"> |
|
|
|
|
</mat-form-field> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="queryField ordiv"> |
|
|
|
|
<div class="queryField" > |
|
|
|
|
<label style="margin-right: 10px;">单位类型:</label> |
|
|
|
|
<mat-form-field> |
|
|
|
|
<mat-select placeholder='请选择单位类型' name="unittype" [(ngModel)]="unittype"> |
|
|
|
|
<mat-option *ngFor="let unit of allunittype" [value]="unit.id" > |
|
|
|
|
{{unit.name}} |
|
|
|
|
</mat-option> |
|
|
|
|
</mat-select> |
|
|
|
|
</mat-form-field> |
|
|
|
|
<span *ngIf="padMore" style="margin-left: 10px; color: #0080FF;" (click)='padInfo()'>更多筛选条件<img [src]='imgsrcopen'> </span> |
|
|
|
|
<span *ngIf="padput" style="margin-left: 10px; color: #0080FF;" (click)='padInfo()'>收起<img [src]='imgsrcdown'> </span> |
|
|
|
|
</div> |
|
|
|
|
<div class="queryField" *ngIf="!pcfind"> |
|
|
|
|
<button mat-raised-button color="primary">查询</button> |
|
|
|
|
<button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button> |
|
|
|
|
</div> |
|
|
|
|
<div class="queryField ordiv" *ngIf="!padMore"> |
|
|
|
|
<label style="margin-right: 10px;">消防救援站:</label> |
|
|
|
|
<mat-form-field class="example-full-width"> |
|
|
|
|
<input readonly matInput placeholder="请选择消防救援站" autocomplete="off" [(ngModel)]="js" name="js" (focus)="openorganizationbox()"> |
|
|
|
|
</mat-form-field> |
|
|
|
|
<mat-checkbox style="margin-left: 6px;" [(ngModel)]="jscheck" name="jscheck">包含下级</mat-checkbox> |
|
|
|
|
<span *ngIf="padMore" style="margin-left: 10px; color: #0080FF;" (click)='padInfo()'>更多筛选条件<img [src]='imgsrcopen'> </span> |
|
|
|
|
<span *ngIf="padput" style="margin-left: 10px; color: #0080FF;" (click)='padInfo()'>收起<img [src]='imgsrcdown'> </span> |
|
|
|
|
|
|
|
|
|
<div class="organizationbox" *ngIf="isorganizationbox"> |
|
|
|
|
<div (click)="closediv()" class="closediv"><mat-icon>clear</mat-icon></div> |
|
|
|
|
<mat-tree [dataSource]="dataSource" [treeControl]="treeControl"> |
|
|
|
@ -40,17 +54,6 @@
|
|
|
|
|
</mat-tree> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="queryField" *ngIf="!padMore"> |
|
|
|
|
<label style="margin-right: 10px;">单位类型:</label> |
|
|
|
|
<mat-form-field> |
|
|
|
|
<mat-select placeholder='请选择单位类型' name="unittype" [(ngModel)]="unittype"> |
|
|
|
|
<mat-option *ngFor="let unit of allunittype" [value]="unit.id" > |
|
|
|
|
{{unit.name}} |
|
|
|
|
</mat-option> |
|
|
|
|
</mat-select> |
|
|
|
|
</mat-form-field> |
|
|
|
|
</div> |
|
|
|
|
<div class="queryField" *ngIf="!padMore"> |
|
|
|
|
<label style="margin-right: 10px;">预案类型:</label> |
|
|
|
|
<mat-form-field> |
|
|
|
@ -61,8 +64,27 @@
|
|
|
|
|
<mat-option value=4>其他预案</mat-option> |
|
|
|
|
</mat-select> |
|
|
|
|
</mat-form-field> |
|
|
|
|
<span *ngIf="pcMore" style="margin-left: 15px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>更多筛选条件<img [src]='imgsrcopen'> </span> |
|
|
|
|
<span *ngIf="pcput" style="margin-left: 10px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>收起<img [src]='imgsrcdown'> </span> |
|
|
|
|
</div> |
|
|
|
|
<div class="queryField" *ngIf="!padMore"> |
|
|
|
|
<div class="queryField" *ngIf="pcfind" > |
|
|
|
|
<button mat-raised-button color="primary">查询</button> |
|
|
|
|
<button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button> |
|
|
|
|
</div> |
|
|
|
|
<div class="queryField" *ngIf="!padMore&&!pcMore"> |
|
|
|
|
<label style="margin-right: 10px;">编制级别:</label> |
|
|
|
|
<mat-form-field> |
|
|
|
|
<mat-select name="preparelevel" [(ngModel)]="preparelevel" placeholder='请选择编制级别'> |
|
|
|
|
<!-- <mat-option value="1">总队</mat-option> |
|
|
|
|
<mat-option value="2">支队</mat-option> |
|
|
|
|
<mat-option value="4">大队</mat-option> |
|
|
|
|
<mat-option value="8">中队</mat-option> --> |
|
|
|
|
<mat-option *ngFor="let item of preparelevels" [value]="item.value">{{item.name}}</mat-option> |
|
|
|
|
</mat-select> |
|
|
|
|
</mat-form-field> |
|
|
|
|
<mat-checkbox style="margin-left: 6px;" [(ngModel)]="plcheck" name="plcheck">包含下级</mat-checkbox> |
|
|
|
|
</div> |
|
|
|
|
<div class="queryField" *ngIf="!padMore&&!pcMore"> |
|
|
|
|
<label style="margin-right: 10px;">审核状态:</label> |
|
|
|
|
<mat-form-field> |
|
|
|
|
<mat-select name="toExamine" [(ngModel)]="toExamine" placeholder='请选择审核状态'> |
|
|
|
@ -73,21 +95,9 @@
|
|
|
|
|
</mat-select> |
|
|
|
|
</mat-form-field> |
|
|
|
|
</div> |
|
|
|
|
<div class="queryField" *ngIf="!padMore"> |
|
|
|
|
<label style="margin-right: 10px;">编制级别:</label> |
|
|
|
|
<mat-form-field> |
|
|
|
|
<mat-select name="preparelevel" [(ngModel)]="preparelevel" placeholder='请选择编制级别'> |
|
|
|
|
<!-- <mat-option value="1">总队</mat-option> |
|
|
|
|
<mat-option value="2">支队</mat-option> |
|
|
|
|
<mat-option value="4">大队</mat-option> |
|
|
|
|
<mat-option value="8">中队</mat-option> --> |
|
|
|
|
<mat-option *ngFor="let item of preparelevels" [value]="item.value">{{item.name}}</mat-option> |
|
|
|
|
</mat-select> |
|
|
|
|
</mat-form-field> |
|
|
|
|
<mat-checkbox style="margin-left: 6px;" [(ngModel)]="plcheck" name="plcheck">包含下级</mat-checkbox> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="queryField" *ngIf="!padMore"> |
|
|
|
|
|
|
|
|
|
<div class="queryField" *ngIf="!padMore&&!pcMore"> |
|
|
|
|
<label style="margin-right: 10px;">信息完整度排序:</label> |
|
|
|
|
<mat-form-field> |
|
|
|
|
<mat-select placeholder='请选择排序方式' [(ngModel)]="integritySort" name="integritySort"> |
|
|
|
@ -96,7 +106,7 @@
|
|
|
|
|
</mat-select> |
|
|
|
|
</mat-form-field> |
|
|
|
|
</div> |
|
|
|
|
<div class="queryField" *ngIf="!padMore"> |
|
|
|
|
<div class="queryField" *ngIf="!padMore&&!pcMore"> |
|
|
|
|
<label style="margin-right: 10px;">制作情况:</label> |
|
|
|
|
<mat-form-field> |
|
|
|
|
<mat-select placeholder='请选择预案制作情况' [(ngModel)]="haveyuan" name="haveyuan"> |
|
|
|
@ -106,10 +116,6 @@
|
|
|
|
|
</mat-form-field> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="butclass" style="width: 100%;text-align: center;"> |
|
|
|
|
<button mat-raised-button color="primary" type="submit">查询</button> |
|
|
|
|
<button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button> |
|
|
|
|
</div> |
|
|
|
|
</form> |
|
|
|
|
</div> |
|
|
|
|
<mat-divider></mat-divider> |
|
|
|
|