You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
157 lines
8.0 KiB
157 lines
8.0 KiB
<div style="height: 100%;overflow: auto;"> |
|
<div class="header"> |
|
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm"> |
|
<div class="queryBox"> |
|
<div class="queryField"> |
|
<label style="margin-right: 10px;">单位名称:</label> |
|
<mat-form-field class="example-full-width"> |
|
<input matInput placeholder="请输入单位名称" name="companyName" [(ngModel)]="companyName" autocomplete="off"> |
|
</mat-form-field> |
|
</div> |
|
<div class="queryField"> |
|
<label style="margin-right: 10px;">编制级别:</label> |
|
<mat-form-field> |
|
<mat-select [(ngModel)]="preparelevel" name="preparelevel" placeholder='请选择编制级别'> |
|
<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> |
|
<span *ngIf="padMore" style="margin-left: 20px; color: #0080FF;" (click)='padInfo()'>更多筛选条件<img |
|
[src]='imgsrcopen' style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span> |
|
<span *ngIf="padput" style="margin-left: 10px; color: #0080FF;" (click)='padInfo()'>收起<img [src]='imgsrcdown' |
|
style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </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" *ngIf="!padMore"> |
|
<label style="margin-right: 10px;">单位类型:</label> |
|
<mat-form-field> |
|
<mat-select placeholder='请选择单位类型' [(ngModel)]="unittype" name="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> |
|
<mat-select [(ngModel)]="reservePlanType" name="reservePlanType" placeholder='请选择预案类型'> |
|
<mat-option value="16">文本预案</mat-option> |
|
<mat-option value="1">二维预案</mat-option> |
|
<mat-option value="2">三维预案</mat-option> |
|
<mat-option value="4">其他预案</mat-option> |
|
</mat-select> |
|
</mat-form-field> |
|
</div> |
|
<div class="queryField" *ngIf="!padMore"> |
|
<label style="margin-right: 10px;">单位状态:</label> |
|
<mat-form-field> |
|
<mat-select placeholder='请选择单位状态' [(ngModel)]="IsNewCompanyData" name="IsNewCompanyData"> |
|
<mat-option value='true'>新增</mat-option> |
|
<mat-option value="false">维护更新</mat-option> |
|
</mat-select> |
|
</mat-form-field> |
|
</div> |
|
<div class="queryField" *ngIf="!padMore"> |
|
<label style="margin-right: 10px;">预案状态:</label> |
|
<mat-form-field> |
|
<mat-select placeholder='请选择预案状态' [(ngModel)]="IsNewData" name="IsNewData"> |
|
<mat-option value='true'>新增</mat-option> |
|
<mat-option value="false">维护更新</mat-option> |
|
</mat-select> |
|
</mat-form-field> |
|
</div> |
|
<div class="queryField" *ngIf="!padMore"> |
|
<mat-checkbox (ngModelChange)="templatePlanChange($event,1)" [(ngModel)]="templatePlan" name="templatePlan"> |
|
模板录入预案</mat-checkbox> |
|
</div> |
|
<div class="queryField" *ngIf="!padMore"> |
|
<mat-checkbox (ngModelChange)="templatePlanChange($event,2)" [(ngModel)]="customPlan" name="customPlan">自定义预案 |
|
</mat-checkbox> |
|
</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> |
|
|
|
</form> |
|
</div> |
|
<!-- <mat-divider></mat-divider> --> |
|
<div class="body"> |
|
<div class="tablebox"> |
|
<table mat-table [dataSource]="tabledataSource" class="mat-elevation-z8"> |
|
<ng-container matColumnDef="state"> |
|
<th mat-header-cell *matHeaderCellDef style="width: 10%;">预案状态</th> |
|
<td mat-cell *matCellDef="let element"> |
|
<span class="add" *ngIf="element.isNewData">新增</span> |
|
<span class="weihu" *ngIf="!element.isNewData">维护更新</span> |
|
</td> |
|
</ng-container> |
|
<ng-container matColumnDef="unitname"> |
|
<th mat-header-cell *matHeaderCellDef>单位名称</th> |
|
<td mat-cell *matCellDef="let element">{{element.companyName}}</td> |
|
</ng-container> |
|
<ng-container matColumnDef="planname"> |
|
<th mat-header-cell *matHeaderCellDef>预案名称</th> |
|
<td mat-cell *matCellDef="let element">{{element.name}}</td> |
|
</ng-container> |
|
<ng-container matColumnDef="addpeople"> |
|
<th mat-header-cell *matHeaderCellDef>添加人</th> |
|
<td mat-cell *matCellDef="let element">{{element.creatorName}}</td> |
|
</ng-container> |
|
<ng-container matColumnDef="addtime"> |
|
<th mat-header-cell *matHeaderCellDef>添加时间</th> |
|
<td mat-cell *matCellDef="let element">{{element.creationTime | date:'yyyy-MM-dd'}}</td> |
|
</ng-container> |
|
<ng-container matColumnDef="plantype"> |
|
<th mat-header-cell *matHeaderCellDef style="width: 120px;">预案类型</th> |
|
<td mat-cell *matCellDef="let element" style="text-align: left;"> |
|
<span |
|
style="margin:0px;margin-left: 26%; color: black;cursor: default;vertical-align: middle;">{{element.planType |
|
| |
|
plantype}}</span> |
|
<img *ngIf="element.planType == 16 && element.attachmentUrls == null && element.planMode == 2" style="vertical-align: middle; |
|
margin: 3px 0 0 3px;" src="../../../assets/images/template.png" alt=""> |
|
<img *ngIf="element.planType == 16 && element.attachmentUrls == null && element.planMode == 4" style="vertical-align: middle; |
|
margin: 3px 0 0 3px;" src="../../../assets/images/custom.png" alt=""> |
|
</td> |
|
</ng-container> |
|
<ng-container matColumnDef="auditStatus"> |
|
<th mat-header-cell *matHeaderCellDef>新增审核</th> |
|
<td mat-cell *matCellDef="let element">{{element.newVerifyState}}</td> |
|
</ng-container> |
|
<ng-container matColumnDef="weihuStatus"> |
|
<th mat-header-cell *matHeaderCellDef>维护审核</th> |
|
<td mat-cell *matCellDef="let element">{{element.maintenanceVerifyState}}</td> |
|
</ng-container> |
|
|
|
<ng-container matColumnDef="openRange"> |
|
<th mat-header-cell *matHeaderCellDef>是否公开</th> |
|
<td mat-cell *matCellDef="let element">{{element.openRange}}</td> |
|
</ng-container> |
|
<ng-container matColumnDef="projectlevel"> |
|
<th mat-header-cell *matHeaderCellDef>编制级别</th> |
|
<td mat-cell *matCellDef="let element">{{element.planLevel | planlevel}}</td> |
|
</ng-container> |
|
<ng-container matColumnDef="operation"> |
|
<th mat-header-cell *matHeaderCellDef>操作</th> |
|
<td mat-cell *matCellDef="let element"> |
|
<span (click)="routerTo(element)" style="color: blue;cursor: pointer;">查看预案</span> |
|
</td> |
|
</ng-container> |
|
<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" |
|
(page)="chagePage($event)"> |
|
</mat-paginator> |
|
|
|
</div> |
|
</div> |
|
</div> |