Files
bbq/src/app/routes/menu-manager/components/index/menu-modal/menu-modal.component.html
Taric Xin eed0749612 edit
2022-01-21 11:28:50 +08:00

8 lines
374 B
HTML

<div *ngIf="schema">
<sf #sf [compact]="true" [ui]="ui" [schema]="schema" [button]="'none'" [formData]="formData"> </sf>
</div>
<div class="modal-footer">
<button nz-button type="button" (click)="close()">{{ isDisabled ? '关闭' : '取消' }}</button>
<button nz-button type="button" nzType="primary" (click)="sure()" *ngIf="!isDisabled">确定</button>
</div>