chenjingyu
4 years ago
24 changed files with 257 additions and 108 deletions
@ -0,0 +1,4 @@
|
||||
<div mat-dialog-title>消防设施统计</div> |
||||
<div> |
||||
<p style="margin: 5px 0; font-size: 14px;" *ngFor="let item of allFireList">{{item}}</p> |
||||
</div> |
@ -0,0 +1,31 @@
|
||||
<div class="orBox" (mousewheel)="$event.stopPropagation()"> |
||||
<div class="treebox"> |
||||
<mat-tree [dataSource]="dataSource" [treeControl]="treeControl" > |
||||
<mat-tree-node [ngClass]="{'selectedNode': node.id == selectedNodeId}" *matTreeNodeDef="let node;" matTreeNodePadding (click)="selectedNode(node)"> |
||||
<button mat-icon-button disabled ></button> |
||||
{{node.name}} |
||||
</mat-tree-node> |
||||
|
||||
|
||||
<mat-tree-node [ngClass]="{'selectedNode': node.id == selectedNodeId}" *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding (click)="selectedNode(node)"> |
||||
<button mat-icon-button |
||||
matTreeNodeToggle |
||||
[attr.aria-label]="'toggle ' + node.name"> |
||||
<mat-icon class="mat-icon-rtl-mirror"> |
||||
{{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}} |
||||
</mat-icon> |
||||
</button> |
||||
{{node.name}} |
||||
</mat-tree-node> |
||||
</mat-tree> |
||||
</div> |
||||
|
||||
<div mat-dialog-actions class="btnbox" style="justify-content: center;"> |
||||
<button mat-raised-button color="primary" (click)="ok()"> |
||||
确定 |
||||
</button> |
||||
<button mat-raised-button mat-dialog-close> |
||||
取消 |
||||
</button> |
||||
</div> |
||||
</div> |
@ -1,24 +0,0 @@
|
||||
<div style="position: relative;width: 1400px;height: 800px;line-height: 800px;" class="swiper-container"> |
||||
<div style="position: absolute;right: -2px;top: -392px;cursor: pointer;z-index: 999;width: 24px;height: 24px;" (click)="closeDialog()"> |
||||
<span><mat-icon>clear</mat-icon></span> |
||||
</div> |
||||
|
||||
<div class="swiper-wrapper"> |
||||
<div class="swiper-slide" style="text-align: center;" *ngFor="let img of imagesArr"> |
||||
<img id="bigimg" (mousewheel)="zoomimg($event)" style=" |
||||
max-width: 96%; |
||||
max-height: 100%; |
||||
min-width: 1px; |
||||
min-height: 1px; |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
bottom: 0; |
||||
right: 0; |
||||
margin: auto;" [src]="img.PropertyValue" alt=""> |
||||
</div> |
||||
</div> |
||||
<!-- 如果需要导航按钮 --> |
||||
<div class="swiper-button-next"></div> |
||||
<div class="swiper-button-prev"></div> |
||||
</div> |
Loading…
Reference in new issue