对话框 Modal
模态对话框。
如何使用
需要用户处理事务,又不希望跳转页面以致打断工作流程时,可以使用 Modal
在当前页面正中打开一个浮层,承载相应的操作。
代码演示
API
属性
Modal 的属性说明如下:
属性 | 说明 | 类型 | 默认值 | 版本 |
---|---|---|---|---|
afterClose | Modal 完全关闭后的回调 | function | - | |
bodyStyle | Modal body 样式 | CSSProperties | ||
cancelText | 取消按钮文字 | string | 取消 | |
centered | 垂直居中展示 Modal | boolean | false | |
confirmLoading | 确定按钮 loading | boolean | false | |
destroyOnClose | 关闭时销毁 Modal 里的子元素 | boolean | false | |
footer | 底部内容,当不需要默认底部按钮时,可以设为 :footer="null" | slot | (确定取消按钮) | |
forceRender | 强制渲染 Modal | boolean | false | |
mask | 是否展示遮罩 | boolean | true | |
maskClosable | 点击蒙层是否允许关闭 | boolean | true | |
okText | 确认按钮文字 | string | 确定 | |
style | 可用于设置浮层的样式,调整浮层位置等 | CSSProperties | - | |
title | 标题 | string | - | |
open | 对话框是否可见 | boolean | - | |
width | 宽度 | string | number | 520 | |
wrapClassName | 对话框外层容器的类名 | string | - | |
zIndex | 设置 Modal 的 z-index | number | 1000 | |
onCancel | 点击遮罩层或右上角叉或取消按钮的回调 | function(e){} | - | |
onOk | 点击确定回调 | function(e){} | - |