考核考试系统
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.
 
 
 
 
 

32 lines
1.3 KiB

<div style="min-width: 260px;" id="uploadfiretree">
<div style="text-align: center;font-weight: 550;">提交</div>
<div style="font-size: 14px; font-weight: 550;margin: 5px 0;">考核消防设施:</div>
<div style="max-height: 200px;overflow-y: auto;margin-bottom: 25px;">
<!-- 消防列表树 -->
<nz-tree
*ngIf="renderData"
[nzData]="renderData"
nzMultiple
nzExpandAll
(nzClick)="nzEvent($event)"
(nzExpandChange)="nzEvent($event)"
(nzCheckBoxChange)="nzEvent($event)"
[nzTreeTemplate]="nzTreeTemplate"
>
</nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<div class="treeNodeTemplate">
<label class="overflowText textNode">{{node.origin.name || node.origin.Name}}
<span *ngIf="node.origin.xxx" style="color: #FF8678;">(已标注)</span>
<span *ngIf="!node.origin.xxx && node.origin.PropertyInfos">(未标注)</span>
</label>
</div>
</ng-template>
<!-- 消防列表树 -->
</div>
<div style="text-align: center;">
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;" (click)='submit()'>确定</button>
<button mat-stroked-button style="margin-left: 15px;border: none;background: #dfe0e0;" mat-dialog-close>取消</button>
</div>
</div>