Browse Source

[完善]待审核显示bug

master
邵佳豪 1 year ago
parent
commit
c897c18244
  1. 1
      src/app/app.component.ts
  2. 2
      src/app/plan-audit/wait-examineer/wait-examineer.component.html
  3. 363
      src/app/plan-management/meet-plan/meet-plan.component.html
  4. 335
      src/app/plan-management/onetwo-entry-plan/onetwo-entry-plan.component.html
  5. 322
      src/app/plan-management/type-plan/type-plan.component.html
  6. 861
      src/app/plan-management/type-plan/type-plan.component.ts

1
src/app/app.component.ts

@ -25,6 +25,7 @@ export class AppComponent {
isMaskLayerShow: boolean = false; isMaskLayerShow: boolean = false;
ngOnInit(): void { ngOnInit(): void {
console.log("更新日期2023.12.21");
//监听遮罩层 //监听遮罩层
this.maskLayerService.getMessage().subscribe((message: any) => { this.maskLayerService.getMessage().subscribe((message: any) => {
this.isMaskLayerShow = message; this.isMaskLayerShow = message;

2
src/app/plan-audit/wait-examineer/wait-examineer.component.html

@ -108,6 +108,8 @@
<td style="width: 10%;"> <td style="width: 10%;">
<span <span
*ngIf="item.verifyState=='0' && (item.contentType == 3 || item.contentType == 4 || item.contentType == 5) && item.itemObj.isFollowed">待初审</span> *ngIf="item.verifyState=='0' && (item.contentType == 3 || item.contentType == 4 || item.contentType == 5) && item.itemObj.isFollowed">待初审</span>
<span
*ngIf="item.verifyState=='0' && (item.contentType !== 3 && item.contentType !== 4 && item.contentType !== 5)">待初审</span>
<span <span
*ngIf="item.verifyState=='0' && (item.contentType == 3 || item.contentType == 4 || item.contentType == 5) && !item.itemObj.isFollowed">待终审</span> *ngIf="item.verifyState=='0' && (item.contentType == 3 || item.contentType == 4 || item.contentType == 5) && !item.itemObj.isFollowed">待终审</span>
<span class="green" *ngIf="item.verifyState=='1'">初审通过</span> <span class="green" *ngIf="item.verifyState=='1'">初审通过</span>

363
src/app/plan-management/meet-plan/meet-plan.component.html

@ -1,190 +1,199 @@
<div style="height: 100%;overflow-y: auto;"> <div style="height: 100%;overflow-y: auto;">
<div class="header" > <div class="header">
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm"> <form (ngSubmit)="onSubmit(form.value)" #form="ngForm">
<div class="queryBox"> <div class="queryBox">
<div class="queryField"> <div class="queryField">
<label style="margin-right: 10px;">预案名称:</label> <label style="margin-right: 10px;">预案名称:</label>
<mat-form-field class="example-full-width"> <mat-form-field class="example-full-width">
<input matInput placeholder="请输入预案名称" name="companyName" autocomplete="off" [(ngModel)]="unitname"> <input matInput placeholder="请输入预案名称" name="companyName" autocomplete="off" [(ngModel)]="unitname">
</mat-form-field> </mat-form-field>
</div> </div>
<div class="queryField" > <div class="queryField">
<label style="margin-right: 10px;">编制级别:</label> <label style="margin-right: 10px;">编制级别:</label>
<mat-form-field> <mat-form-field>
<mat-select name="preparelevel" placeholder='请选择编制级别' [(ngModel)]="projectlevel"> <mat-select name="preparelevel" placeholder='请选择编制级别' [(ngModel)]="projectlevel">
<!-- <mat-option value="1">总队</mat-option> <!-- <mat-option value="1">总队</mat-option>
<mat-option value="2">支队</mat-option> <mat-option value="2">支队</mat-option>
<mat-option value="4">大队</mat-option> <mat-option value="4">大队</mat-option>
<mat-option value="8">中队</mat-option> --> <mat-option value="8">中队</mat-option> -->
<mat-option *ngFor="let item of preparelevels" [value]="item.value">{{item.name}}</mat-option> <mat-option *ngFor="let item of preparelevels" [value]="item.value">{{item.name}}</mat-option>
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
<mat-checkbox style="margin-left: 6px;" [(ngModel)]="plcheck" name="plcheck">包含下级</mat-checkbox> <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="padMore" style="margin-left: 20px; color: #0080FF;" (click)='padInfo()'>更多筛选条件<img
<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> [src]='imgsrcopen' style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
</div> <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 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='请选择预案级别' name="level" [(ngModel)]="level">
<mat-option value="6">国家级</mat-option>
<mat-option value="7">市级</mat-option>
</mat-select>
</mat-form-field>
</div>
<div class="queryField" *ngIf="!padMore">
<label style="margin-right: 10px;">添加人:</label>
<mat-form-field class="example-full-width">
<input matInput placeholder="请输入添加人" name="addname" autocomplete="off" [(ngModel)]="addname">
</mat-form-field>
<span *ngIf="pcMore" style="margin-left: 15px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>更多筛选条件<img [src]='imgsrcopen'style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
<span *ngIf="pcput" style="margin-left: 10px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>收起<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>
<div class="queryField" *ngIf="!padMore&&!pcMore">
<label style="margin-right: 10px;">添加时间:</label>
<mat-form-field class="example-full-width">
<input type="date" matInput name="addtime" autocomplete="off" [(ngModel)]="addtime">
</mat-form-field>
<!-- <mat-icon aria-hidden="false" style="position: relative;right: 120px;top: 5px;">arrow forward</mat-icon> -->
<mat-icon *ngIf="padjt" aria-hidden="false" style="position: relative;right: 120px;top: 5px;" id="padshow">arrow forward</mat-icon>
<span style="margin-left: 15px;" id="pcshow" *ngIf="!padMore&&!padjt">🠊</span>
<mat-form-field class="example-full-width" style="margin-left: 10px;">
<input type="date" matInput name="endtime" autocomplete="off" [(ngModel)]="endtime">
</mat-form-field>
</div>
<div class="queryField" *ngIf="!padMore&&!pcMore"> <div class="queryField" *ngIf="!pcfind">
<label style="margin-right: 10px;">预案类型:</label> <button mat-raised-button color="primary">查询</button>
<mat-form-field> <button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button>
<input matInput placeholder="请输入预案类型" name="reservePlanType" autocomplete="off" [(ngModel)]="typePlan"> </div>
</mat-form-field> <div class="queryField" *ngIf="!padMore">
</div> <label style="margin-right: 10px;">预案级别:</label>
<div class="queryField" *ngIf="!padMore&&!pcMore"> <mat-form-field>
<label style="margin-right: 10px;">审核状态:</label> <mat-select placeholder='请选择预案级别' name="level" [(ngModel)]="level">
<mat-form-field> <mat-option value="6">国家级</mat-option>
<mat-select name="toExamine" placeholder='请选择审核状态' [(ngModel)]="unitstate"> <mat-option value="7">市级</mat-option>
<mat-option value="8">未提交审核</mat-option> </mat-select>
<mat-option value="1">审核中</mat-option> </mat-form-field>
<mat-option value="2">审核通过</mat-option>
<mat-option value="4">审核退回</mat-option> </div>
</mat-select> <div class="queryField" *ngIf="!padMore">
</mat-form-field> <label style="margin-right: 10px;">添加人:</label>
</div> <mat-form-field class="example-full-width">
<div class="queryField" *ngIf="!padMore&&!pcMore"> <input matInput placeholder="请输入添加人" name="addname" autocomplete="off" [(ngModel)]="addname">
<input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='true' [(ngModel)]="IsNewData"> </mat-form-field>
<label style="margin-right: 10px;margin-left: 2px;">新增</label> <span *ngIf="pcMore" style="margin-left: 15px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>更多筛选条件<img
<input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='false' [(ngModel)]="IsNewData"> [src]='imgsrcopen' style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
<label style="margin-right: 10px;margin-left: 2px;">维护更新</label> <span *ngIf="pcput" style="margin-left: 10px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>收起<img
</div> [src]='imgsrcdown' style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
</div>
</div> <div class="queryField" *ngIf="pcfind">
<!-- <div class="butclass" style="width: 100%;text-align: center;"> <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 class="example-full-width">
<input type="date" matInput name="addtime" autocomplete="off" [(ngModel)]="addtime">
</mat-form-field>
<!-- <mat-icon aria-hidden="false" style="position: relative;right: 120px;top: 5px;">arrow forward</mat-icon> -->
<mat-icon *ngIf="padjt" aria-hidden="false" style="position: relative;right: 120px;top: 5px;"
id="padshow">arrow forward</mat-icon>
<span style="margin-left: 15px;" id="pcshow" *ngIf="!padMore&&!padjt">🠊</span>
<mat-form-field class="example-full-width" style="margin-left: 10px;">
<input type="date" matInput name="endtime" autocomplete="off" [(ngModel)]="endtime">
</mat-form-field>
</div>
<div class="queryField" *ngIf="!padMore&&!pcMore">
<label style="margin-right: 10px;">预案类型:</label>
<mat-form-field>
<input matInput placeholder="请输入预案类型" name="reservePlanType" autocomplete="off" [(ngModel)]="typePlan">
</mat-form-field>
</div>
<div class="queryField" *ngIf="!padMore&&!pcMore">
<label style="margin-right: 10px;">审核状态:</label>
<mat-form-field>
<mat-select name="toExamine" placeholder='请选择审核状态' [(ngModel)]="unitstate">
<mat-option value="8">未提交审核</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&&!pcMore">
<input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='true'
[(ngModel)]="IsNewData">
<label style="margin-right: 10px;margin-left: 2px;">新增</label>
<input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='false'
[(ngModel)]="IsNewData">
<label style="margin-right: 10px;margin-left: 2px;">维护更新</label>
</div>
</div>
<!-- <div class="butclass" style="width: 100%;text-align: center;">
<button mat-raised-button color="primary" type="submit">查询</button> <button mat-raised-button color="primary" type="submit">查询</button>
<button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button> <button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button>
</div> --> </div> -->
</form> </form>
</div>
<!-- <mat-divider></mat-divider> -->
<div class="newadd">
<div>
<button *ngIf="levels=='0'" mat-raised-button color="primary" (click)='addunit()'><img style="margin-bottom: 3px;"
src="../../../assets/images/newadd.png"> 新增</button>
<!-- <button mat-raised-button color="primary" (click)='word("table","ceshi.doc")'></button> -->
</div> </div>
<!-- <mat-divider></mat-divider> -->
<div class="newadd"> <div class="progressBox" style="margin-left: 100px;" *ngIf="downloadisLoading">
<div>
<button *ngIf="levels=='0'" mat-raised-button color="primary" (click)='addunit()'><img style="margin-bottom: 3px;" src="../../../assets/images/newadd.png"> 新增</button> <!-- <button mat-raised-button style="margin-right: 5px;" (click)="cancelDowload()">取消下载</button> -->
<!-- <button mat-raised-button color="primary" (click)='word("table","ceshi.doc")'></button> --> <span title="{{downloadFileName}}" style="font-size: 12px;" class="filename">{{downloadFileName}}</span>
</div> <span style="font-size: 12px;position: absolute;margin-left: 8px;">下载中...</span>
<mat-progress-bar mode="determinate" [value]="downloadProgress" class="progress"></mat-progress-bar>
<div class="progressBox" style="margin-left: 100px;" *ngIf="downloadisLoading">
<!-- <button mat-raised-button style="margin-right: 5px;" (click)="cancelDowload()">取消下载</button> -->
<span title="{{downloadFileName}}" style="font-size: 12px;" class="filename">{{downloadFileName}}</span>
<span style="font-size: 12px;position: absolute;margin-left: 8px;">下载中...</span>
<mat-progress-bar mode="determinate" [value]="downloadProgress" class="progress"></mat-progress-bar>
</div>
</div> </div>
<div class="body"> </div>
<div class="tablebox" id="table"> <div class="body">
<table mat-table [dataSource]="tabledataSource" class="mat-elevation-z8"> <div class="tablebox" id="table">
<ng-container matColumnDef="state"> <table mat-table [dataSource]="tabledataSource" class="mat-elevation-z8">
<th mat-header-cell *matHeaderCellDef style="width: 8%;">预案状态</th> <ng-container matColumnDef="state">
<td mat-cell *matCellDef="let element"> <th mat-header-cell *matHeaderCellDef style="width: 8%;">预案状态</th>
<span class="add" *ngIf="element.isNewData">新增</span> <td mat-cell *matCellDef="let element">
<span class="weihu" *ngIf="!element.isNewData">维护更新</span> <span class="add" *ngIf="element.isNewData">新增</span>
</td> <span class="weihu" *ngIf="!element.isNewData">维护更新</span>
</ng-container> </td>
<ng-container matColumnDef="unitname"> </ng-container>
<th mat-header-cell *matHeaderCellDef style="width: 8%;">预案名称</th> <ng-container matColumnDef="unitname">
<td mat-cell *matCellDef="let element">{{element.name}}</td> <th mat-header-cell *matHeaderCellDef style="width: 8%;">预案名称</th>
</ng-container> <td mat-cell *matCellDef="let element">{{element.name}}</td>
<ng-container matColumnDef="level"> </ng-container>
<th mat-header-cell *matHeaderCellDef style="width: 8%;">预案级别</th> <ng-container matColumnDef="level">
<td mat-cell *matCellDef="let element">{{element.planCategory=='6'?'国家级':'市级'}}</td> <th mat-header-cell *matHeaderCellDef style="width: 8%;">预案级别</th>
</ng-container> <td mat-cell *matCellDef="let element">{{element.planCategory=='6'?'国家级':'市级'}}</td>
<ng-container matColumnDef="addname"> </ng-container>
<th mat-header-cell *matHeaderCellDef style="width: 8%;">添加人</th> <ng-container matColumnDef="addname">
<td mat-cell *matCellDef="let element">{{element.creatorName}}</td> <th mat-header-cell *matHeaderCellDef style="width: 8%;">添加人</th>
</ng-container> <td mat-cell *matCellDef="let element">{{element.creatorName}}</td>
</ng-container>
<ng-container matColumnDef="addtime">
<th mat-header-cell *matHeaderCellDef style="width: 8%;">添加时间</th> <ng-container matColumnDef="addtime">
<td mat-cell *matCellDef="let element">{{element.creationTime|date:'yyyy-MM-dd'}}</td> <th mat-header-cell *matHeaderCellDef style="width: 8%;">添加时间</th>
</ng-container> <td mat-cell *matCellDef="let element">{{element.creationTime|date:'yyyy-MM-dd'}}</td>
<ng-container matColumnDef="plantype"> </ng-container>
<th mat-header-cell *matHeaderCellDef style="width: 8%;">预案类型</th> <ng-container matColumnDef="plantype">
<td mat-cell *matCellDef="let element">{{element.disasterType}}</td> <th mat-header-cell *matHeaderCellDef style="width: 8%;">预案类型</th>
</ng-container> <td mat-cell *matCellDef="let element">{{element.disasterType}}</td>
<ng-container matColumnDef="passstate"> </ng-container>
<th mat-header-cell *matHeaderCellDef style="width: 8%;">新增审核</th> <ng-container matColumnDef="passstate">
<td mat-cell *matCellDef="let element"> <th mat-header-cell *matHeaderCellDef style="width: 8%;">新增审核</th>
{{element.newVerifyState}} <td mat-cell *matCellDef="let element">
<!-- {{element.auditStatus=='8'?'未提交审核':element.auditStatus=='1'?'审核中':element.auditStatus=='2'?'审核通过':element.auditStatus=='4'? {{element.newVerifyState}}
<!-- {{element.auditStatus=='8'?'未提交审核':element.auditStatus=='1'?'审核中':element.auditStatus=='2'?'审核通过':element.auditStatus=='4'?
'审核退回':element.auditStatus=='16'?'初审通过':'初审驳回'}} --> '审核退回':element.auditStatus=='16'?'初审通过':'初审驳回'}} -->
</td> </td>
</ng-container> </ng-container>
<ng-container matColumnDef="isopen"> <ng-container matColumnDef="isopen">
<th mat-header-cell *matHeaderCellDef style="width: 8%;">是否公开</th> <th mat-header-cell *matHeaderCellDef style="width: 8%;">是否公开</th>
<td mat-cell *matCellDef="let element">{{element.openRange}}</td> <td mat-cell *matCellDef="let element">{{element.openRange}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="projectlevel"> <ng-container matColumnDef="projectlevel">
<th mat-header-cell *matHeaderCellDef style="width: 8%;">编制级别</th> <th mat-header-cell *matHeaderCellDef style="width: 8%;">编制级别</th>
<td mat-cell *matCellDef="let element">{{element.planLevel=='1'?'总队':element.planLevel=='2'?'支队':element.planLevel=='4'?'大队':'中队'}}</td> <td mat-cell *matCellDef="let element">
</ng-container> {{element.planLevel=='1'?'总队':element.planLevel=='2'?'支队':element.planLevel=='4'?'大队':'中队'}}</td>
<ng-container matColumnDef="weihustate"> </ng-container>
<th mat-header-cell *matHeaderCellDef style="width: 8%;">维护审核</th> <ng-container matColumnDef="weihustate">
<td mat-cell *matCellDef="let element">{{element.maintenanceVerifyState}}</td> <th mat-header-cell *matHeaderCellDef style="width: 8%;">维护审核</th>
</ng-container> <td mat-cell *matCellDef="let element">{{element.maintenanceVerifyState}}</td>
<ng-container matColumnDef="operation"> </ng-container>
<th mat-header-cell *matHeaderCellDef style="width: 20%;">操作</th> <ng-container matColumnDef="operation">
<td mat-cell *matCellDef="let element" style="white-space: nowrap;cursor: pointer;"> <th mat-header-cell *matHeaderCellDef style="width: 20%;">操作</th>
<span style="color: blue;" (click)='openPlan(element)'>查看预案</span> <td mat-cell *matCellDef="let element" style="white-space: nowrap;cursor: pointer;">
<span style="color: blue;margin-left: 4px;" (click)="submitAudit(element)" *ngIf="(element.isNewData && element.newVerifyState=='未提交审核')||(!element.isNewData&&(element.maintenanceVerifyState=='审核通过'||element.maintenanceVerifyState=='未提交审核'))">提交审核</span> <span style="color: blue;" (click)='openPlan(element)'>查看预案</span>
<span style="color: blue;margin-left: 4px;" (click)="cancelAudit(element)" *ngIf="element.auditStatus == 1||element.auditStatus == 16">撤销审核</span> <span style="color: blue;margin-left: 4px;" (click)="submitAudit(element)"
<span style="color: blue;margin-left: 4px;" (click)="auditResult(element)">审批结果</span> *ngIf="(element.isNewData && element.newVerifyState=='未提交审核')||(!element.isNewData&&(element.maintenanceVerifyState=='审核通过'||element.maintenanceVerifyState=='未提交审核'))">提交审核</span>
<span style="color: blue;margin-left: 4px;" (click)='readFile(element)'>下载</span> <span style="color: blue;margin-left: 4px;" (click)="cancelAudit(element)"
<span style="color: red;margin-left: 4px" (click)='deletePlan(element.id)' *ngIf="element.auditStatus == 8"> 删除</span> *ngIf="element.auditStatus == 1||element.auditStatus == 16">撤销审核</span>
</td> <span style="color: blue;margin-left: 4px;" (click)="auditResult(element)">审批结果</span>
</ng-container> <span style="color: blue;margin-left: 4px;" (click)='readFile(element)'>下载</span>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> <span style="color: red;margin-left: 4px" (click)='deletePlan(element.id)'> 删除</span>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr> </td>
</table> </ng-container>
<mat-paginator pageEvent [length]="length" <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
[pageSize]="pageSize" <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
[pageSizeOptions]="pageSizeOptions" </table>
(page)="changePage($event)"> <mat-paginator pageEvent [length]="length" [pageSize]="pageSize" [pageSizeOptions]="pageSizeOptions"
(page)="changePage($event)">
</mat-paginator>
</mat-paginator>
</div>
</div> </div>
</div> </div>
</div>

335
src/app/plan-management/onetwo-entry-plan/onetwo-entry-plan.component.html

@ -7,172 +7,181 @@
* @LastEditTime: 2021-07-24 16:59:38 * @LastEditTime: 2021-07-24 16:59:38
--> -->
<div style="height: 100%;overflow-y: auto;"> <div style="height: 100%;overflow-y: auto;">
<div class="header" > <div class="header">
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm"> <form (ngSubmit)="onSubmit(form.value)" #form="ngForm">
<div class="queryBox"> <div class="queryBox">
<div class="queryField"> <div class="queryField">
<label style="margin-right: 10px;">预案名称:</label> <label style="margin-right: 10px;">预案名称:</label>
<mat-form-field class="example-full-width"> <mat-form-field class="example-full-width">
<input matInput placeholder="请输入预案名称" name="companyName" autocomplete="off" [(ngModel)]="unitname"> <input matInput placeholder="请输入预案名称" name="companyName" autocomplete="off" [(ngModel)]="unitname">
</mat-form-field> </mat-form-field>
</div> </div>
<div class="queryField" > <div class="queryField">
<label style="margin-right: 10px;">编制级别:</label> <label style="margin-right: 10px;">编制级别:</label>
<mat-form-field> <mat-form-field>
<mat-select name="preparelevel" placeholder='请选择编制级别' [(ngModel)]="projectlevel"> <mat-select name="preparelevel" placeholder='请选择编制级别' [(ngModel)]="projectlevel">
<!-- <mat-option value="1">总队</mat-option> <!-- <mat-option value="1">总队</mat-option>
<mat-option value="2">支队</mat-option> <mat-option value="2">支队</mat-option>
<mat-option value="4">大队</mat-option> <mat-option value="4">大队</mat-option>
<mat-option value="8">中队</mat-option> --> <mat-option value="8">中队</mat-option> -->
<mat-option *ngFor="let item of preparelevels" [value]="item.value">{{item.name}}</mat-option> <mat-option *ngFor="let item of preparelevels" [value]="item.value">{{item.name}}</mat-option>
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
<mat-checkbox style="margin-left: 6px;" [(ngModel)]="plcheck" name="plcheck">包含下级</mat-checkbox> <mat-checkbox style="margin-left: 6px;" [(ngModel)]="plcheck" name="plcheck">包含下级</mat-checkbox>
<span *ngIf="padMore" style="margin-left: 10px; color: #0080FF;" (click)='padInfo()'>更多筛选条件<img [src]='imgsrcopen'style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span> <span *ngIf="padMore" style="margin-left: 10px; color: #0080FF;" (click)='padInfo()'>更多筛选条件<img
<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> [src]='imgsrcopen' style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
</div> <span *ngIf="padput" style="margin-left: 10px; color: #0080FF;" (click)='padInfo()'>收起<img [src]='imgsrcdown'
<div class="queryField" *ngIf="!pcfind"> style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
<button mat-raised-button color="primary">查询</button> </div>
<button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button> <div class="queryField" *ngIf="!pcfind">
</div> <button mat-raised-button color="primary">查询</button>
<div class="queryField" *ngIf="!padMore"> <button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button>
<label style="margin-right: 10px;">添加人:</label> </div>
<mat-form-field class="example-full-width"> <div class="queryField" *ngIf="!padMore">
<input matInput placeholder="请输入添加人" name="addname" autocomplete="off" [(ngModel)]="addname"> <label style="margin-right: 10px;">添加人:</label>
</mat-form-field> <mat-form-field class="example-full-width">
<input matInput placeholder="请输入添加人" name="addname" autocomplete="off" [(ngModel)]="addname">
</div> </mat-form-field>
<div class="queryField" *ngIf="!padMore">
<label style="margin-right: 10px;">预案类型:</label> </div>
<mat-form-field> <div class="queryField" *ngIf="!padMore">
<input matInput placeholder="请输入预案类型" name="reservePlanType" autocomplete="off" [(ngModel)]="typePlan"> <label style="margin-right: 10px;">预案类型:</label>
</mat-form-field> <mat-form-field>
<span *ngIf="pcMore" style="margin-left: 15px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>更多筛选条件<img [src]='imgsrcopen'style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span> <input matInput placeholder="请输入预案类型" name="reservePlanType" autocomplete="off" [(ngModel)]="typePlan">
<span *ngIf="pcput" style="margin-left: 10px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>收起<img [src]='imgsrcdown'style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span> </mat-form-field>
</div> <span *ngIf="pcMore" style="margin-left: 15px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>更多筛选条件<img
[src]='imgsrcopen' style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
<div class="queryField" *ngIf="pcfind" > <span *ngIf="pcput" style="margin-left: 10px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>收起<img
<button mat-raised-button color="primary">查询</button> [src]='imgsrcdown' style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
<button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button> </div>
</div>
<div class="queryField" *ngIf="!padMore&&!pcMore"> <div class="queryField" *ngIf="pcfind">
<label style="margin-right: 10px;">添加时间:</label> <button mat-raised-button color="primary">查询</button>
<mat-form-field class="example-full-width"> <button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button>
<input type="date" matInput name="addtime" autocomplete="off" [(ngModel)]="addtime"> </div>
</mat-form-field> <div class="queryField" *ngIf="!padMore&&!pcMore">
<!-- <mat-icon aria-hidden="false" style="position: relative;right: 120px;top: 5px;">arrow forward</mat-icon> --> <label style="margin-right: 10px;">添加时间:</label>
<mat-icon *ngIf="padjt" aria-hidden="false" style="position: relative;right: 120px;top: 5px;" id="padshow">arrow forward</mat-icon> <mat-form-field class="example-full-width">
<span style="margin-left: 15px;" id="pcshow" *ngIf="!padMore&&!padjt">🠊</span> <input type="date" matInput name="addtime" autocomplete="off" [(ngModel)]="addtime">
<mat-form-field class="example-full-width" style="margin-left: 10px;"> </mat-form-field>
<input type="date" matInput name="endtime" autocomplete="off" [(ngModel)]="endtime"> <!-- <mat-icon aria-hidden="false" style="position: relative;right: 120px;top: 5px;">arrow forward</mat-icon> -->
</mat-form-field> <mat-icon *ngIf="padjt" aria-hidden="false" style="position: relative;right: 120px;top: 5px;"
</div> id="padshow">arrow forward</mat-icon>
<span style="margin-left: 15px;" id="pcshow" *ngIf="!padMore&&!padjt">🠊</span>
<div class="queryField" *ngIf="!padMore&&!pcMore"> <mat-form-field class="example-full-width" style="margin-left: 10px;">
<label style="margin-right: 10px;">审核状态:</label> <input type="date" matInput name="endtime" autocomplete="off" [(ngModel)]="endtime">
<mat-form-field> </mat-form-field>
<mat-select name="toExamine" placeholder='请选择审核状态' [(ngModel)]="unitstate"> </div>
<mat-option value="8">未提交审核</mat-option>
<mat-option value="1">审核中</mat-option> <div class="queryField" *ngIf="!padMore&&!pcMore">
<mat-option value="2">审核通过</mat-option> <label style="margin-right: 10px;">审核状态:</label>
<mat-option value="4">审核退回</mat-option> <mat-form-field>
</mat-select> <mat-select name="toExamine" placeholder='请选择审核状态' [(ngModel)]="unitstate">
</mat-form-field> <mat-option value="8">未提交审核</mat-option>
</div> <mat-option value="1">审核中</mat-option>
<div class="queryField" *ngIf="!padMore&&!pcMore"> <mat-option value="2">审核通过</mat-option>
<input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='true' [(ngModel)]="IsNewData"> <mat-option value="4">审核退回</mat-option>
<label style="margin-right: 10px;margin-left: 2px;">新增</label> </mat-select>
<input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='false' [(ngModel)]="IsNewData"> </mat-form-field>
<label style="margin-right: 10px;margin-left: 2px;">维护更新</label> </div>
</div> <div class="queryField" *ngIf="!padMore&&!pcMore">
<input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='true'
</div> [(ngModel)]="IsNewData">
<label style="margin-right: 10px;margin-left: 2px;">新增</label>
</form> <input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='false'
</div> [(ngModel)]="IsNewData">
<!-- <mat-divider></mat-divider> --> <label style="margin-right: 10px;margin-left: 2px;">维护更新</label>
<div class="newadd"> </div>
<div>
<button *ngIf="levels=='0'||levels=='1'" mat-raised-button color="primary" (click)="addunit()"><img style="margin-bottom: 3px;" src="../../../assets/images/newadd.png"> 新增</button>
</div>
<div class="progressBox" style="margin-left: 100px;" *ngIf="downloadisLoading">
<!-- <button mat-raised-button style="margin-right: 5px;" (click)="cancelDowload()">取消下载</button> -->
<span title="{{downloadFileName}}" style="font-size: 12px;" class="filename">{{downloadFileName}}</span>
<span style="font-size: 12px;position: absolute;margin-left: 8px;">下载中...</span>
<mat-progress-bar mode="determinate" [value]="downloadProgress" class="progress"></mat-progress-bar>
</div> </div>
</form>
</div>
<!-- <mat-divider></mat-divider> -->
<div class="newadd">
<div>
<button *ngIf="levels=='0'||levels=='1'" mat-raised-button color="primary" (click)="addunit()"><img
style="margin-bottom: 3px;" src="../../../assets/images/newadd.png"> 新增</button>
</div> </div>
<div class="progressBox" style="margin-left: 100px;" *ngIf="downloadisLoading">
<div class="body">
<div class="tablebox"> <!-- <button mat-raised-button style="margin-right: 5px;" (click)="cancelDowload()">取消下载</button> -->
<table mat-table [dataSource]="tabledataSource" class="mat-elevation-z8"> <span title="{{downloadFileName}}" style="font-size: 12px;" class="filename">{{downloadFileName}}</span>
<ng-container matColumnDef="state"> <span style="font-size: 12px;position: absolute;margin-left: 8px;">下载中...</span>
<th mat-header-cell *matHeaderCellDef style="width: 8%;">预案状态</th> <mat-progress-bar mode="determinate" [value]="downloadProgress" class="progress"></mat-progress-bar>
<td mat-cell *matCellDef="let element"> </div>
<span class="add" *ngIf="element.isNewData">新增</span> </div>
<span class="weihu" *ngIf="!element.isNewData">维护更新</span>
</td> <div class="body">
</ng-container> <div class="tablebox">
<ng-container matColumnDef="unitname"> <table mat-table [dataSource]="tabledataSource" class="mat-elevation-z8">
<th mat-header-cell *matHeaderCellDef style="width: 8%;">预案名称</th> <ng-container matColumnDef="state">
<td mat-cell *matCellDef="let element">{{element.name}}</td> <th mat-header-cell *matHeaderCellDef style="width: 8%;">预案状态</th>
</ng-container> <td mat-cell *matCellDef="let element">
<ng-container matColumnDef="level"> <span class="add" *ngIf="element.isNewData">新增</span>
<th mat-header-cell *matHeaderCellDef style="width: 8%;">预案级别</th> <span class="weihu" *ngIf="!element.isNewData">维护更新</span>
<td mat-cell *matCellDef="let element">{{url=='2'?'Ⅱ级':'Ⅰ级'}}</td> </td>
</ng-container> </ng-container>
<ng-container matColumnDef="addname"> <ng-container matColumnDef="unitname">
<th mat-header-cell *matHeaderCellDef style="width: 8%;">添加人</th> <th mat-header-cell *matHeaderCellDef style="width: 8%;">预案名称</th>
<td mat-cell *matCellDef="let element">{{element.creatorName}}</td> <td mat-cell *matCellDef="let element">{{element.name}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="level">
<ng-container matColumnDef="addtime"> <th mat-header-cell *matHeaderCellDef style="width: 8%;">预案级别</th>
<th mat-header-cell *matHeaderCellDef style="width: 8%;">添加时间</th> <td mat-cell *matCellDef="let element">{{url=='2'?'Ⅱ级':'Ⅰ级'}}</td>
<td mat-cell *matCellDef="let element">{{element.creationTime|date:'yyyy-MM-dd'}}</td> </ng-container>
</ng-container> <ng-container matColumnDef="addname">
<ng-container matColumnDef="plantype"> <th mat-header-cell *matHeaderCellDef style="width: 8%;">添加人</th>
<th mat-header-cell *matHeaderCellDef style="width: 8%;">预案类型</th> <td mat-cell *matCellDef="let element">{{element.creatorName}}</td>
<td mat-cell *matCellDef="let element">{{element.disasterType}}</td> </ng-container>
</ng-container>
<ng-container matColumnDef="passstate"> <ng-container matColumnDef="addtime">
<th mat-header-cell *matHeaderCellDef style="width: 8%;">新增审核</th> <th mat-header-cell *matHeaderCellDef style="width: 8%;">添加时间</th>
<td mat-cell *matCellDef="let element">{{element.newVerifyState}}</td> <td mat-cell *matCellDef="let element">{{element.creationTime|date:'yyyy-MM-dd'}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="weihustate"> <ng-container matColumnDef="plantype">
<th mat-header-cell *matHeaderCellDef style="width: 8%;">维护审核</th> <th mat-header-cell *matHeaderCellDef style="width: 8%;">预案类型</th>
<td mat-cell *matCellDef="let element">{{element.maintenanceVerifyState}}</td> <td mat-cell *matCellDef="let element">{{element.disasterType}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="isopen"> <ng-container matColumnDef="passstate">
<th mat-header-cell *matHeaderCellDef style="width: 8%;">是否公开</th> <th mat-header-cell *matHeaderCellDef style="width: 8%;">新增审核</th>
<td mat-cell *matCellDef="let element">{{element.openRange}}</td> <td mat-cell *matCellDef="let element">{{element.newVerifyState}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="projectlevel"> <ng-container matColumnDef="weihustate">
<th mat-header-cell *matHeaderCellDef style="width: 8%;">编制级别</th> <th mat-header-cell *matHeaderCellDef style="width: 8%;">维护审核</th>
<td mat-cell *matCellDef="let element">{{element.planLevel=='1'?'总队':element.planLevel=='2'?'支队':element.planLevel=='4'?'大队':'中队'}}</td> <td mat-cell *matCellDef="let element">{{element.maintenanceVerifyState}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="operation"> <ng-container matColumnDef="isopen">
<th mat-header-cell *matHeaderCellDef style="width: 20%;">操作</th> <th mat-header-cell *matHeaderCellDef style="width: 8%;">是否公开</th>
<td mat-cell *matCellDef="let element" style="white-space: nowrap;cursor: pointer;"> <td mat-cell *matCellDef="let element">{{element.openRange}}</td>
<span style="color: blue;" (click)='openPlan(element)'>查看预案</span> </ng-container>
<span style="color: blue;margin-left: 4px;" (click)="submitAudit(element)" *ngIf="(element.isNewData && element.newVerifyState=='未提交审核')||(!element.isNewData&&(element.maintenanceVerifyState=='审核通过'||element.maintenanceVerifyState=='未提交审核'))">提交审核</span> <ng-container matColumnDef="projectlevel">
<span style="color: blue;margin-left: 4px;" (click)="cancelAudit(element)" *ngIf="element.auditStatus == 1||element.auditStatus == 16">撤销审核</span> <th mat-header-cell *matHeaderCellDef style="width: 8%;">编制级别</th>
<span style="color: blue;margin-left: 4px;" (click)="auditResult(element)">审批结果</span> <td mat-cell *matCellDef="let element">
<!-- <span style="color: blue;margin-left: 4px;" *ngIf="element.auditStatus == 2">审核通过</span> --> {{element.planLevel=='1'?'总队':element.planLevel=='2'?'支队':element.planLevel=='4'?'大队':'中队'}}</td>
<span style="color: blue;margin-left: 4px;" (click)='readFile(element)'>下载</span> </ng-container>
<span style="color: red;margin-left: 4px" (click)='deletePlan(element.id)' *ngIf="element.auditStatus == 8"> 删除</span> <ng-container matColumnDef="operation">
</td> <th mat-header-cell *matHeaderCellDef style="width: 20%;">操作</th>
</ng-container> <td mat-cell *matCellDef="let element" style="white-space: nowrap;cursor: pointer;">
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> <span style="color: blue;" (click)='openPlan(element)'>查看预案</span>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr> <span style="color: blue;margin-left: 4px;" (click)="submitAudit(element)"
</table> *ngIf="(element.isNewData && element.newVerifyState=='未提交审核')||(!element.isNewData&&(element.maintenanceVerifyState=='审核通过'||element.maintenanceVerifyState=='未提交审核'))">提交审核</span>
<mat-paginator pageEvent [length]="length" <span style="color: blue;margin-left: 4px;" (click)="cancelAudit(element)"
[pageSize]="pageSize" *ngIf="element.auditStatus == 1||element.auditStatus == 16">撤销审核</span>
[pageSizeOptions]="pageSizeOptions" <span style="color: blue;margin-left: 4px;" (click)="auditResult(element)">审批结果</span>
(page)="changePage($event)"> <!-- <span style="color: blue;margin-left: 4px;" *ngIf="element.auditStatus == 2">审核通过</span> -->
<span style="color: blue;margin-left: 4px;" (click)='readFile(element)'>下载</span>
</mat-paginator> <span style="color: red;margin-left: 4px" (click)='deletePlan(element.id)'> 删除</span>
</td>
</div> </ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
<mat-paginator pageEvent [length]="length" [pageSize]="pageSize" [pageSizeOptions]="pageSizeOptions"
(page)="changePage($event)">
</mat-paginator>
</div> </div>
</div> </div>
</div>

322
src/app/plan-management/type-plan/type-plan.component.html

@ -1,164 +1,174 @@
<div style="height: 100%;overflow-y: auto;"> <div style="height: 100%;overflow-y: auto;">
<div class="header" > <div class="header">
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm"> <form (ngSubmit)="onSubmit(form.value)" #form="ngForm">
<div class="queryBox"> <div class="queryBox">
<div class="queryField"> <div class="queryField">
<label style="margin-right: 10px;">预案名称:</label> <label style="margin-right: 10px;">预案名称:</label>
<mat-form-field class="example-full-width"> <mat-form-field class="example-full-width">
<input matInput placeholder="请输入预案名称" name="companyName" autocomplete="off" [(ngModel)]="unitname"> <input matInput placeholder="请输入预案名称" name="companyName" autocomplete="off" [(ngModel)]="unitname">
</mat-form-field> </mat-form-field>
</div> </div>
<div class="queryField" > <div class="queryField">
<label style="margin-right: 10px;">编制级别:</label> <label style="margin-right: 10px;">编制级别:</label>
<mat-form-field> <mat-form-field>
<mat-select name="preparelevel" placeholder='请选择编制级别' [(ngModel)]="projectlevel"> <mat-select name="preparelevel" placeholder='请选择编制级别' [(ngModel)]="projectlevel">
<!-- <mat-option value="1">总队</mat-option> <!-- <mat-option value="1">总队</mat-option>
<mat-option value="2">支队</mat-option> <mat-option value="2">支队</mat-option>
<mat-option value="4">大队</mat-option> <mat-option value="4">大队</mat-option>
<mat-option value="8">中队</mat-option> --> <mat-option value="8">中队</mat-option> -->
<mat-option *ngFor="let item of preparelevels" [value]="item.value">{{item.name}}</mat-option> <mat-option *ngFor="let item of preparelevels" [value]="item.value">{{item.name}}</mat-option>
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
<mat-checkbox style="margin-left: 6px;" [(ngModel)]="plcheck" name="plcheck">包含下级</mat-checkbox> <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="padMore" style="margin-left: 20px; color: #0080FF;" (click)='padInfo()'>更多筛选条件<img
<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> [src]='imgsrcopen' style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
</div> <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 class="queryField" *ngIf="!pcfind"> </div>
<button mat-raised-button color="primary">查询</button>
<button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button> <div class="queryField" *ngIf="!pcfind">
</div> <button mat-raised-button color="primary">查询</button>
<div class="queryField" *ngIf="!padMore"> <button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button>
<label style="margin-right: 10px;">添加人:</label> </div>
<mat-form-field class="example-full-width"> <div class="queryField" *ngIf="!padMore">
<input matInput placeholder="请输入添加人" name="addname" autocomplete="off" [(ngModel)]="addname"> <label style="margin-right: 10px;">添加人:</label>
</mat-form-field> <mat-form-field class="example-full-width">
<input matInput placeholder="请输入添加人" name="addname" autocomplete="off" [(ngModel)]="addname">
</div> </mat-form-field>
<div class="queryField" *ngIf="!padMore"> </div>
<label style="margin-right: 10px;">审核状态:</label>
<mat-form-field> <div class="queryField" *ngIf="!padMore">
<mat-select name="toExamine" placeholder='请选择审核状态' [(ngModel)]="unitstate"> <label style="margin-right: 10px;">审核状态:</label>
<mat-option value="8">未提交审核</mat-option> <mat-form-field>
<mat-option value="1">审核中</mat-option> <mat-select name="toExamine" placeholder='请选择审核状态' [(ngModel)]="unitstate">
<mat-option value="2">审核通过</mat-option> <mat-option value="8">未提交审核</mat-option>
<mat-option value="4">审核退回</mat-option> <mat-option value="1">审核中</mat-option>
</mat-select> <mat-option value="2">审核通过</mat-option>
</mat-form-field> <mat-option value="4">审核退回</mat-option>
<span *ngIf="pcMore" style="margin-left: 15px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>更多筛选条件<img [src]='imgsrcopen'style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span> </mat-select>
<span *ngIf="pcput" style="margin-left: 10px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>收起<img [src]='imgsrcdown'style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span> </mat-form-field>
</div> <span *ngIf="pcMore" style="margin-left: 15px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>更多筛选条件<img
<div class="queryField" *ngIf="pcfind" > [src]='imgsrcopen' style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
<button mat-raised-button color="primary">查询</button> <span *ngIf="pcput" style="margin-left: 10px; color: #0080FF; cursor: pointer;" (click)='pcInfo()'>收起<img
<button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button> [src]='imgsrcdown' style="width: 10px;height: 6px;margin:0 0 3px 2px;"> </span>
</div> </div>
<div class="queryField" *ngIf="!padMore&&!pcMore"> <div class="queryField" *ngIf="pcfind">
<label style="margin-right: 10px;">添加时间:</label> <button mat-raised-button color="primary">查询</button>
<mat-form-field class="example-full-width"> <button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button>
<input type="date" matInput name="addtime" autocomplete="off" [(ngModel)]="addtime"> </div>
</mat-form-field> <div class="queryField" *ngIf="!padMore&&!pcMore">
<!-- <mat-icon aria-hidden="false" style="position: relative;right: 120px;top: 5px;">arrow forward</mat-icon> --> <label style="margin-right: 10px;">添加时间:</label>
<mat-icon *ngIf="padjt" aria-hidden="false" style="position: relative;right: 120px;top: 5px;" id="padshow">arrow forward</mat-icon> <mat-form-field class="example-full-width">
<span style="margin-left: 15px;" id="pcshow" *ngIf="!padMore&&!padjt">🠊</span> <input type="date" matInput name="addtime" autocomplete="off" [(ngModel)]="addtime">
<mat-form-field class="example-full-width" style="margin-left: 10px;"> </mat-form-field>
<input type="date" matInput autocomplete="off" name="endtime" [(ngModel)]="endtime"> <!-- <mat-icon aria-hidden="false" style="position: relative;right: 120px;top: 5px;">arrow forward</mat-icon> -->
</mat-form-field> <mat-icon *ngIf="padjt" aria-hidden="false" style="position: relative;right: 120px;top: 5px;"
</div> id="padshow">arrow forward</mat-icon>
<div class="queryField" *ngIf="!padMore&&!pcMore"> <span style="margin-left: 15px;" id="pcshow" *ngIf="!padMore&&!padjt">🠊</span>
<input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='true' [(ngModel)]="IsNewData"> <mat-form-field class="example-full-width" style="margin-left: 10px;">
<label style="margin-right: 10px;margin-left: 2px;">新增</label> <input type="date" matInput autocomplete="off" name="endtime" [(ngModel)]="endtime">
<input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='false' [(ngModel)]="IsNewData"> </mat-form-field>
<label style="margin-right: 10px;margin-left: 2px;">维护更新</label> </div>
</div> <div class="queryField" *ngIf="!padMore&&!pcMore">
<input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='true'
</div> [(ngModel)]="IsNewData">
</form> <label style="margin-right: 10px;margin-left: 2px;">新增</label>
</div> <input type="radio" style="height: 16px;width: 16px;position: relative;top: 2px;" name="whgx" [value]='false'
<!-- <mat-divider></mat-divider> --> [(ngModel)]="IsNewData">
<div class="newadd"> <label style="margin-right: 10px;margin-left: 2px;">维护更新</label>
<div> </div>
<button mat-raised-button color="primary" (click)='addunit()' *ngIf="levels=='0'"><img style="margin-bottom: 3px;" src="../../../assets/images/newadd.png"> 新增</button>
</div>
<div class="progressBox" style="margin-left: 100px;" *ngIf="downloadisLoading">
<!-- <button mat-raised-button style="margin-right: 5px;" (click)="cancelDowload()">取消下载</button> -->
<span title="{{downloadFileName}}" style="font-size: 12px;" class="filename">{{downloadFileName}}</span>
<span style="font-size: 12px;position: absolute;margin-left: 8px;">下载中...</span>
<mat-progress-bar mode="determinate" [value]="downloadProgress" class="progress"></mat-progress-bar>
</div> </div>
</form>
</div>
<!-- <mat-divider></mat-divider> -->
<div class="newadd">
<div>
<button mat-raised-button color="primary" (click)='addunit()' *ngIf="levels=='0'"><img style="margin-bottom: 3px;"
src="../../../assets/images/newadd.png"> 新增</button>
</div> </div>
<div class="body"> <div class="progressBox" style="margin-left: 100px;" *ngIf="downloadisLoading">
<div class="tablebox">
<table mat-table [dataSource]="tabledataSource" class="mat-elevation-z8"> <!-- <button mat-raised-button style="margin-right: 5px;" (click)="cancelDowload()">取消下载</button> -->
<ng-container matColumnDef="state"> <span title="{{downloadFileName}}" style="font-size: 12px;" class="filename">{{downloadFileName}}</span>
<th mat-header-cell *matHeaderCellDef style="width: 10%;">预案状态</th> <span style="font-size: 12px;position: absolute;margin-left: 8px;">下载中...</span>
<td mat-cell *matCellDef="let element"> <mat-progress-bar mode="determinate" [value]="downloadProgress" class="progress"></mat-progress-bar>
<span class="add" *ngIf="element.isNewData">新增</span> </div>
<span class="weihu" *ngIf="!element.isNewData">维护更新</span> </div>
</td>
</ng-container> <div class="body">
<ng-container matColumnDef="unitname"> <div class="tablebox">
<th mat-header-cell *matHeaderCellDef style="width: 20%;">预案名称</th> <table mat-table [dataSource]="tabledataSource" class="mat-elevation-z8">
<td mat-cell *matCellDef="let element">{{element.name}}</td> <ng-container matColumnDef="state">
</ng-container> <th mat-header-cell *matHeaderCellDef style="width: 10%;">预案状态</th>
<td mat-cell *matCellDef="let element">
<ng-container matColumnDef="addname"> <span class="add" *ngIf="element.isNewData">新增</span>
<th mat-header-cell *matHeaderCellDef style="width: 10%;">添加人</th> <span class="weihu" *ngIf="!element.isNewData">维护更新</span>
<td mat-cell *matCellDef="let element">{{element.creatorName}}</td> </td>
</ng-container> </ng-container>
<ng-container matColumnDef="unitname">
<ng-container matColumnDef="addtime"> <th mat-header-cell *matHeaderCellDef style="width: 20%;">预案名称</th>
<th mat-header-cell *matHeaderCellDef style="width: 10%;">添加时间</th> <td mat-cell *matCellDef="let element">{{element.name}}</td>
<td mat-cell *matCellDef="let element">{{element.creationTime|date:'yyyy-MM-dd'}}</td> </ng-container>
</ng-container>
<ng-container matColumnDef="plantype"> <ng-container matColumnDef="addname">
<th mat-header-cell *matHeaderCellDef style="width: 10%;">预案类型</th> <th mat-header-cell *matHeaderCellDef style="width: 10%;">添加人</th>
<td mat-cell *matCellDef="let element">类型预案</td> <td mat-cell *matCellDef="let element">{{element.creatorName}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="passstate">
<th mat-header-cell *matHeaderCellDef style="width: 10%;">新增审核</th> <ng-container matColumnDef="addtime">
<td mat-cell *matCellDef="let element"> <th mat-header-cell *matHeaderCellDef style="width: 10%;">添加时间</th>
{{element.newVerifyState}} <td mat-cell *matCellDef="let element">{{element.creationTime|date:'yyyy-MM-dd'}}</td>
</td> </ng-container>
</ng-container> <ng-container matColumnDef="plantype">
<ng-container matColumnDef="isopen"> <th mat-header-cell *matHeaderCellDef style="width: 10%;">预案类型</th>
<th mat-header-cell *matHeaderCellDef style="width: 10%;">是否公开</th> <td mat-cell *matCellDef="let element">类型预案</td>
<td mat-cell *matCellDef="let element">{{element.openRange}}</td> </ng-container>
</ng-container> <ng-container matColumnDef="passstate">
<ng-container matColumnDef="projectlevel"> <th mat-header-cell *matHeaderCellDef style="width: 10%;">新增审核</th>
<th mat-header-cell *matHeaderCellDef style="width: 10%;">编制级别</th> <td mat-cell *matCellDef="let element">
<td mat-cell *matCellDef="let element">{{element.planLevel=='1'?'总队':element.planLevel=='2'?'支队':element.planLevel=='4'?'大队':'中队'}}</td> {{element.newVerifyState}}
</ng-container> </td>
<ng-container matColumnDef="weihustate"> </ng-container>
<th mat-header-cell *matHeaderCellDef style="width: 10%;">维护审核</th> <ng-container matColumnDef="isopen">
<td mat-cell *matCellDef="let element">{{element.maintenanceVerifyState}}</td> <th mat-header-cell *matHeaderCellDef style="width: 10%;">是否公开</th>
</ng-container> <td mat-cell *matCellDef="let element">{{element.openRange}}</td>
<ng-container matColumnDef="operation"> </ng-container>
<th mat-header-cell *matHeaderCellDef style="width: 20%;">操作</th> <ng-container matColumnDef="projectlevel">
<td mat-cell *matCellDef="let element" style="white-space: nowrap;cursor: pointer;"> <th mat-header-cell *matHeaderCellDef style="width: 10%;">编制级别</th>
<span style="color: blue;" (click)='openPlan(element)'>查看预案</span> <td mat-cell *matCellDef="let element">
<span style="color: blue;margin-left: 4px;" (click)="submitAudit(element)" *ngIf="(element.isNewData && element.newVerifyState=='未提交审核')||(!element.isNewData&&(element.maintenanceVerifyState=='审核通过'||element.maintenanceVerifyState=='未提交审核'))">提交审核</span> {{element.planLevel=='1'?'总队':element.planLevel=='2'?'支队':element.planLevel=='4'?'大队':'中队'}}</td>
<span style="color: blue;margin-left: 4px;" (click)="cancelAudit(element)" *ngIf="element.auditStatus == 1||element.auditStatus == 16">撤销审核</span> </ng-container>
<span style="color: blue;margin-left: 4px;" (click)="auditResult(element)">审批结果</span> <ng-container matColumnDef="weihustate">
<span style="color: blue;margin-left: 4px;" (click)='readFile(element)'>下载</span> <th mat-header-cell *matHeaderCellDef style="width: 10%;">维护审核</th>
<span style="color: red;margin-left: 4px" (click)='deletePlan(element.id)' *ngIf="element.auditStatus == 8"> 删除</span> <td mat-cell *matCellDef="let element">{{element.maintenanceVerifyState}}</td>
</td> </ng-container>
</ng-container> <ng-container matColumnDef="operation">
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> <th mat-header-cell *matHeaderCellDef style="width: 20%;">操作</th>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr> <td mat-cell *matCellDef="let element" style="white-space: nowrap;cursor: pointer;">
</table> <span style="color: blue;" (click)='openPlan(element)'>查看预案</span>
<mat-paginator pageEvent [length]="length" <span style="color: blue;margin-left: 4px;" (click)="submitAudit(element)"
[pageSize]="pageSize" *ngIf="(element.isNewData && element.newVerifyState=='未提交审核')||(!element.isNewData&&(element.maintenanceVerifyState=='审核通过'||element.maintenanceVerifyState=='未提交审核'))">提交审核</span>
[pageSizeOptions]="pageSizeOptions" <span style="color: blue;margin-left: 4px;" (click)="cancelAudit(element)"
(page)="changePage($event)"> *ngIf="element.auditStatus == 1||element.auditStatus == 16">撤销审核</span>
<span style="color: blue;margin-left: 4px;" (click)="auditResult(element)">审批结果</span>
</mat-paginator> <span style="color: blue;margin-left: 4px;" (click)='readFile(element)'>下载</span>
<span style="color: red;margin-left: 4px" (click)='deletePlan(element.id)'>
</div> 删除</span>
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table>
<mat-paginator pageEvent [length]="length" [pageSize]="pageSize" [pageSizeOptions]="pageSizeOptions"
(page)="changePage($event)">
</mat-paginator>
</div> </div>
</div>
</div> </div>
<p>type-plan works!</p> <p>type-plan works!</p>

861
src/app/plan-management/type-plan/type-plan.component.ts

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save