fengxiang
2018-06-27 a52dc7a6e7119d575c611f9c2800649dff029f5e
1
2
3
4
5
6
7
8
9
10
11
12
<pro-header [title]="organizationService.title">
    
</pro-header>
<nz-card [nzBordered]="false" [nzNoHovering]="true">
        <ng-template #body>
            <app-organization-list *ngIf="organizationService.handle=='list'"></app-organization-list>
            <app-organization-config *ngIf="organizationService.handle=='config'"></app-organization-config>
            <app-organization-config-screen *ngIf="organizationService.handle=='screen'"></app-organization-config-screen>
            <app-organization-config-unit *ngIf="organizationService.handle=='unit'"></app-organization-config-unit>
        </ng-template>
</nz-card>