modal 模态框 - 图1 This article has not been translated, hope that your can PR to translated it. Help us!modal 模态框 - 图2

modal 模态框

在模态框里使用表单是一种非常常见场景,其实 ng g ng-alain:edit edit 的时候会得到一个完整示例;会得到这样的一个HTML模板:

  1. <sf mode="edit" [schema]="schema" [ui]="ui" [formData]="i" button="none">
  2. <div class="modal-footer">
  3. <button nz-button type="button" (click)="close()">关闭</button>
  4. <button nz-button type="submit" [nzType]="'primary'" (click)="save(sf.value)" [disabled]="!sf.valid" [nzLoading]="http.loading">保存</button>
  5. </div>
  6. </sf>

.modal-footer 已经非常友好的融合了自定义动态框。