模态框

    基本用法:

    参阅模态框demo页面查看示例.

    • false (默认值)

    Scrollable

    指定模态框滚动. 应为以下值之一:

    • false (默认值)
    • true

    指定模态框的大小. 应为以下值之一:

    • Default (默认值)
    • Small
    • Large
    • ExtraLarge

    static

    • (默认值)
    • true

    abp-modal-footer 可以有多个带有对齐选项的按钮.

    添加 @using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal 到你的页面.

    1. <abp-button button-type="Primary" data-toggle="modal" data-target="#myModal">Launch modal</abp-button>
    2. <abp-modal-header title="Modal title"></abp-modal-header>
    3. <abp-modal-body>
    4. </abp-modal-body>
    5. <abp-modal-footer buttons="@(AbpModalButtons.Save|AbpModalButtons.Close)" button-alignment="Between"></abp-modal-footer>
    6. </abp-modal>

    button-alignment

    指定模态页脚按钮的位置. 应为以下值之一:

    • Default (默认值)
    • Start
    • Center
    • Around