Files
bbq/src/app/shared/components/dynamic-setting/dynamic-setting-modal/dynamic-setting-modal.component.html
Taric Xin 901a5f0cdb edit
2022-02-21 20:39:34 +08:00

16 lines
642 B
HTML

<app-dynamic-setting-h5 [tabs]="tabs" [configList]="configList" [selectedTab]="selectedTab"
(selectedEvent)="changeType($event)" (saveEvent)="saveAction($event)" [tabSpan]="6" [labelWidth]="labelWidth">
<custom-element>
<ng-container [ngSwitch]="selectedTab?.configType">
<ng-container *ngSwitchCase="1">
权限配置
</ng-container>
<ng-container *ngSwitchCase="2">
</ng-container>
<ng-container *ngSwitchDefault>
费率变更记录
</ng-container>
</ng-container>
</custom-element>
</app-dynamic-setting-h5>