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.
14 lines
789 B
14 lines
789 B
<div> |
|
<div style="max-height: 500px;overflow-x: hidden;overflow-y: auto;margin-bottom: 25px;width: 330px;padding-right: 10px;"> |
|
<nz-tree #nzTreeComponent [nzData]="treeData" nzCheckable nzMultiple [nzTreeTemplate]="nzTreeTemplate"></nz-tree> |
|
<ng-template #nzTreeTemplate let-node let-origin="origin"> |
|
<div id="terrNodePublic"> |
|
<label title="{{node.title}}" class="overflowText textNode">{{node.title}}</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> |