预警误报审核
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.

56 lines
2.3 KiB

<div class="box">
<div class="titlebox">
<div class="title">
<div (click)="contentType('img')" [ngClass]="{'selected': selectedType == 'img'}">
预警截图
<div class="border"></div>
</div>
<div
*ngIf="data.violation && data.violation.eventSystemName != '灭火器维护' && data.violation.eventSystemName != '证照预警'"
(click)="contentType('video')" [ngClass]="{'selected': selectedType == 'video'}">
预警视频
<div class="border"></div>
</div>
</div>
</div>
<div class="details">
预警详情:{{details}}
</div>
<div class="typecheckbox" *ngIf="isAnxin">
<label *ngFor="let item of this.legendList" nz-checkbox [(ngModel)]="item.checked"
2 years ago
(ngModelChange)="typeChange(item)">
<div style="width: 10px;height: 10px;display: inline-block;" [ngStyle]="{'background': typeArr[item.id].color}">
</div>
{{typeArr[item.id].name}}
</label>
<button nz-button nzType="primary" (click)="downImg()">导出图片</button>
</div>
<div class="content">
2 years ago
<div *ngIf="selectedType == 'img'" class="imgbox" [ngClass]="{'imgboxAX': isAnxin}">
<ng-container *ngIf="imgUrl; else elseTemplate">
<img id="img" [src]="imgUrl" alt="" (error)="imgErr()">
2 years ago
<canvas *ngIf="isAnxin" [width]="canvasWidth" [height]="canvasHeight"
[ngStyle]="{'width': canvasWidth + 'px','height': canvasHeight + 'px'}" id="canvas"></canvas>
<span *ngIf="isSrcError" class="SrcError">
图片资源未找到
</span>
</ng-container>
<ng-template #elseTemplate>
<span class="SrcError">暂无图片</span>
</ng-template>
</div>
<div *ngIf="selectedType == 'video'" class="vediobox">
<ng-container *ngIf="vedioUrl; else elseTemplate2">
<video controls style="width: 100%;height: 100%;" [src]="vedioUrl"></video>
</ng-container>
<ng-template #elseTemplate2>
暂无视频
</ng-template>
</div>
</div>
<div class="btnbox" *ngIf="isBtn">
<button nz-button nzType="primary" [nzLoading]="isPushLoading" (click)="push()">推送</button>
<button nz-button nzType="primary" [nzLoading]="isMisinformationLoading" nzDanger
(click)="misinformation()">误报</button>
</div>
</div>