This article has not been translated, hope that your can PR to translated it. Help us!
modal 模态框
在模态框里使用表单是一种非常常见场景,其实 ng g ng-alain:edit edit
的时候会得到一个完整示例;会得到这样的一个HTML模板:
<sf mode="edit" [schema]="schema" [ui]="ui" [formData]="i" button="none">
<div class="modal-footer">
<button nz-button type="button" (click)="close()">关闭</button>
<button nz-button type="submit" [nzType]="'primary'" (click)="save(sf.value)" [disabled]="!sf.valid" [nzLoading]="http.loading">保存</button>
</div>
</sf>
.modal-footer
已经非常友好的融合了自定义动态框。