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.
40 lines
2.2 KiB
40 lines
2.2 KiB
<div style="min-width: 260px;" id="uploadfiretree"> |
|
<div style="text-align: center;font-weight: 550;">上传</div> |
|
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考试要点</div> |
|
<div style="margin-bottom: 25px;"> |
|
<textarea |
|
style="width: 100%;background-color: #dfe0e0;border: none;outline: none;height: 50px;border-radius: 5px;resize: none;" |
|
placeholder="请填写考试要点" [(ngModel)]="data.question.keynote"></textarea> |
|
</div> |
|
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考核消防设施</div> |
|
<div style="max-height: 200px;overflow-y: auto;margin-bottom: 25px;"> |
|
<!-- 消防列表树 --> |
|
<nz-tree #nzTreeComponent [nzData]="renderData" nzMultiple [nzCheckedKeys]="defaultCheckedKeys" |
|
[nzExpandedKeys]="defaultExpandedKeys" [nzSelectedKeys]="defaultSelectedKeys" (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}}</label> |
|
</div> |
|
</ng-template> |
|
<!-- 消防列表树 --> |
|
</div> |
|
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考核处置节点</div> |
|
<div style="max-height: 200px;overflow-y: auto;margin-bottom: 25px;"> |
|
<!-- 消防列表树 --> |
|
<nz-tree #nzTreeComponent [nzData]="nodeTreeData" nzMultiple [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}}</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> |