|
|
|
@ -39,7 +39,14 @@
|
|
|
|
|
</mat-form-field> |
|
|
|
|
</div> |
|
|
|
|
<div class="headthreetwo"> |
|
|
|
|
<span >预案类型:</span> |
|
|
|
|
<span >状态:</span> |
|
|
|
|
<mat-form-field> |
|
|
|
|
<mat-select placeholder='请选择状态' name="IsNewData" [(ngModel)]="IsNewData" [multiple]="true"> |
|
|
|
|
<mat-option value=true>新增</mat-option> |
|
|
|
|
<mat-option value=false>维护更新</mat-option> |
|
|
|
|
</mat-select> |
|
|
|
|
</mat-form-field> |
|
|
|
|
<span class="bzjb">预案类型:</span> |
|
|
|
|
<mat-form-field> |
|
|
|
|
<mat-select placeholder='请选择预案类型' name="unittype" [(ngModel)]="plantypes" [multiple]="true"> |
|
|
|
|
<mat-option value="1">二维预案</mat-option> |
|
|
|
@ -48,6 +55,7 @@
|
|
|
|
|
<mat-option value="16">文本预案</mat-option> |
|
|
|
|
</mat-select> |
|
|
|
|
</mat-form-field> |
|
|
|
|
|
|
|
|
|
<button mat-raised-button color="primary" type="submit" class="find">查询</button> |
|
|
|
|
<button mat-raised-button color="primary" (click)='record()'><img src="../../../assets/images/refresh.png"> |
|
|
|
|
重置</button> |
|
|
|
@ -56,52 +64,56 @@
|
|
|
|
|
</div> |
|
|
|
|
</form> |
|
|
|
|
|
|
|
|
|
<div class="tablediv"> |
|
|
|
|
<table cellspacing="0" cellpadding="0" style="margin-top: 10px;margin-bottom: 5px;"> |
|
|
|
|
<thead> |
|
|
|
|
<th style="width: 15%;">类型</th> |
|
|
|
|
<th style="width: 10%;">预案类型</th> |
|
|
|
|
<th style="width: 15%;">名称</th> |
|
|
|
|
<th style="width: 5%;">操作</th> |
|
|
|
|
<th style="width: 20%;">所属组织</th> |
|
|
|
|
<th style="width: 10%;">审核状态</th> |
|
|
|
|
<th style="width: 10%;">提交人</th> |
|
|
|
|
<th style="width: 15%;">提交时间</th> |
|
|
|
|
</thead> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
<div class="tablediv"> |
|
|
|
|
<table cellspacing="0" cellpadding="0" style="margin-top: 10px;margin-bottom: 5px;"> |
|
|
|
|
<thead> |
|
|
|
|
<th style="width: 10%;margin-left: 5px;">状态</th> |
|
|
|
|
<th style="width: 10%;">类型</th> |
|
|
|
|
<th style="width: 10%;">预案类型</th> |
|
|
|
|
<th style="width: 15%;">名称</th> |
|
|
|
|
<th style="width: 5%;">操作</th> |
|
|
|
|
<th style="width: 20%;">所属组织</th> |
|
|
|
|
<th style="width: 10%;">审核状态</th> |
|
|
|
|
<th style="width: 7%;">提交人</th> |
|
|
|
|
<th style="width: 13%;">提交时间</th> |
|
|
|
|
</thead> |
|
|
|
|
</table> |
|
|
|
|
<div class="tbodycss" id="tbodydiv"> |
|
|
|
|
<table cellspacing="0" cellpadding="0" id="table"> |
|
|
|
|
<tr [ngClass]="{'selectedTr': item.id == id}" *ngFor="let item of tableDate;let key = index" |
|
|
|
|
(click)='radioClick($event,item)'> |
|
|
|
|
<td style="width: 10%;" [ngClass]="{'green': item.itemMaintenanceState == '0','yellow':item.itemMaintenanceState != '0'}"> |
|
|
|
|
<mat-checkbox color="primary" (change)='radioClick($event,item)' style="float: left;margin-bottom:'2px'"> |
|
|
|
|
</mat-checkbox> |
|
|
|
|
{{item.itemMaintenanceState=='0'?'新增':'维护'}}</td> |
|
|
|
|
<td style="width: 10%;"> |
|
|
|
|
|
|
|
|
|
{{item.contentType=='1'?'Ⅰ级预案':item.contentType=='2'?'Ⅱ级预案':item.contentType=='3'?'Ⅲ级预案':item.contentType=='4'?'Ⅳ级预案':item.contentType=='5'? |
|
|
|
|
'Ⅴ级预案':item.contentType=='6'?'应急预案(国家级)':item.contentType=='7'?'应急预案(市级)':item.contentType=='8'?'类型预案':item.contentType=='11'?'重点单位':item.contentType=='12'?'水源':item.contentType=='13'?'消防力量':item.contentType=='14'?'联动力量':'未知'}} |
|
|
|
|
</td> |
|
|
|
|
<td style="width: 10%;"> |
|
|
|
|
{{item.planType=='1'?'二维预案':item.planType=='2'?'三维预案':item.planType=='4'?'其它预案':item.planType=='16'?'文本预案':''}} |
|
|
|
|
</td> |
|
|
|
|
<td style="width: 15%;">{{item.title}}</td> |
|
|
|
|
<td style="width: 5%;" |
|
|
|
|
[ngClass]="{'green': item.operation == '0','red':item.operation == '2','yellow':item.operation == '1'}"> |
|
|
|
|
{{item.operation=='0'?'新增':item.operation=='1'?'更新':'删除'}}</td> |
|
|
|
|
<td style="width: 20%;">{{item.organizationName}}</td> |
|
|
|
|
<td style="width: 10%;" |
|
|
|
|
[ngClass]="{'green': item.verifyState == '1'||item.verifyState == '4','red':item.verifyState == '2'||item.verifyState == '5'}"> |
|
|
|
|
{{item.verifyState=='0'?'待初审':item.verifyState=='1'? |
|
|
|
|
'初审通过':item.verifyState=='2'?'初审驳回':item.verifyState=='3'?'待终审':item.verifyState=='4'?'终审通过':'终审驳回'}} |
|
|
|
|
</td> |
|
|
|
|
<td style="width: 7%;">{{item.creatorName}}</td> |
|
|
|
|
<td style="width: 13%;">{{item.createTime|date:'yyyy-MM-dd'}}</td> |
|
|
|
|
</tr> |
|
|
|
|
</table> |
|
|
|
|
<div class="tbodycss" id="tbodydiv"> |
|
|
|
|
<table cellspacing="0" cellpadding="0" id="table"> |
|
|
|
|
<tr [ngClass]="{'selectedTr': item.id == id}" *ngFor="let item of tableDate;let key = index" |
|
|
|
|
(click)='radioClick($event,item)'> |
|
|
|
|
<td style="width: 15%;"> |
|
|
|
|
<mat-checkbox color="primary" (change)='radioClick($event,item)' style="float: left;margin-top:'2px'"> |
|
|
|
|
</mat-checkbox> |
|
|
|
|
{{item.contentType=='1'?'Ⅰ级预案':item.contentType=='2'?'Ⅱ级预案':item.contentType=='3'?'Ⅲ级预案':item.contentType=='4'?'Ⅳ级预案':item.contentType=='5'? |
|
|
|
|
'Ⅴ级预案':item.contentType=='6'?'应急预案(国家级)':item.contentType=='7'?'应急预案(市级)':item.contentType=='8'?'类型预案':item.contentType=='11'?'重点单位':item.contentType=='12'?'水源':item.contentType=='13'?'消防力量':item.contentType=='14'?'联动力量':'未知'}} |
|
|
|
|
</td> |
|
|
|
|
<td style="width: 10%;"> |
|
|
|
|
{{item.planType=='1'?'二维预案':item.planType=='2'?'三维预案':item.planType=='4'?'其它预案':item.planType=='16'?'文本预案':''}} |
|
|
|
|
</td> |
|
|
|
|
<td style="width: 15%;">{{item.title}}</td> |
|
|
|
|
<td style="width: 5%;" |
|
|
|
|
[ngClass]="{'green': item.operation == '0','red':item.operation == '2','yellow':item.operation == '1'}"> |
|
|
|
|
{{item.operation=='0'?'新增':item.operation=='1'?'更新':'删除'}}</td> |
|
|
|
|
<td style="width: 20%;">{{item.organizationName}}</td> |
|
|
|
|
<td style="width: 10%;" |
|
|
|
|
[ngClass]="{'green': item.verifyState == '1'||item.verifyState == '4','red':item.verifyState == '2'||item.verifyState == '5'}"> |
|
|
|
|
{{item.verifyState=='0'?'待初审':item.verifyState=='1'? |
|
|
|
|
'初审通过':item.verifyState=='2'?'初审驳回':item.verifyState=='3'?'待终审':item.verifyState=='4'?'终审通过':'终审驳回'}} |
|
|
|
|
</td> |
|
|
|
|
<td style="width: 10%;">{{item.creatorName}}</td> |
|
|
|
|
<td style="width: 15%;">{{item.createTime|date:'yyyy-MM-dd'}}</td> |
|
|
|
|
</tr> |
|
|
|
|
</table> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="boxright" id="waitexamineergis"> |
|
|
|
|