|
|
|
@ -5,9 +5,9 @@
|
|
|
|
|
<app-title [name]="'组织机构'"></app-title> |
|
|
|
|
</div> |
|
|
|
|
<div class="or"> |
|
|
|
|
<nz-tree [nzExpandedKeys]="nzExpandedKeys" [nzShowExpand]="false" #nzTreeComponent |
|
|
|
|
[nzExpandAll]="nzExpandAll" nzBlockNode [nzData]="nodes" (nzClick)="activeNode($event)" |
|
|
|
|
[nzTreeTemplate]="nzTreeTemplate" [nzMultiple]="false"></nz-tree> |
|
|
|
|
<nz-tree [nzExpandedKeys]="nzExpandedKeys" [nzShowExpand]="false" #nzTreeComponent [nzExpandAll]="nzExpandAll" |
|
|
|
|
nzBlockNode [nzData]="nodes" (nzClick)="activeNode($event)" [nzTreeTemplate]="nzTreeTemplate" |
|
|
|
|
[nzMultiple]="false"></nz-tree> |
|
|
|
|
<ng-template #nzTreeTemplate let-node let-origin="origin"> |
|
|
|
|
<ng-container *ngIf="node.origin.parentId == null; else elseTemplate"> |
|
|
|
|
<img style="vertical-align: bottom;" src="../../../assets/images/flower.png" alt=""> |
|
|
|
@ -55,7 +55,7 @@
|
|
|
|
|
<nz-table #basicTable [nzData]="list" [nzShowPagination]="false"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th>加油站名称</th> |
|
|
|
|
<th style="text-align: center;">加油站名称</th> |
|
|
|
|
<th>区域</th> |
|
|
|
|
<th>所属公司</th> |
|
|
|
|
<th>联系人</th> |
|
|
|
@ -70,7 +70,7 @@
|
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
<tr *ngFor="let data of basicTable.data"> |
|
|
|
|
<th>加油站名称</th> |
|
|
|
|
<th style="text-align: center;">加油站名称</th> |
|
|
|
|
<th>区域</th> |
|
|
|
|
<th>所属公司</th> |
|
|
|
|
<th>联系人</th> |
|
|
|
@ -80,7 +80,7 @@
|
|
|
|
|
<th>油机数量</th> |
|
|
|
|
<th>车道数量</th> |
|
|
|
|
<th>油罐容积</th> |
|
|
|
|
<th (click)="look()">查看</th> |
|
|
|
|
<th class="look" (click)="look()" style="cursor:pointer;color: #36A2FF">查看</th> |
|
|
|
|
</tr> |
|
|
|
|
</tbody> |
|
|
|
|
</nz-table> |
|
|
|
|