# Modal
# 基本使用
Some contents...
Some contents...
Some contents...
Copy
# 自定义页脚
Some contents...
Some contents...
Some contents...
Copy
# 自定模态宽度
Some contents...
Some contents...
Some contents...
Copy
# 全屏
Some contents...
Some contents...
Some contents...
Copy
# 异步关闭
Some contents...
Some contents...
Some contents...
Copy
# 信息提示
Copy
# 确认对话框
Copy
# API
# Modal
参数 | 说明 | 类型 | 默认值 | 版本 |
---|---|---|---|---|
cancelText | 取消按钮文字 | string | 取消 | |
closable | 是否显示右上角关闭按钮 | boolean | false | |
confirmLoading | 确定按钮 loading | boolean | false | |
mask | 是否展示遮罩 | boolean | true | |
visible(v-model) | 对话框是否可见 | boolean | false | |
maskClosable | 点击蒙层是否允许关闭 | boolean | true | |
okText | 确认按钮文字 | string | 确定 | |
title | 标题 | string | ||
width | 宽度 | string|number | ||
wrapClassName | 对话框外层容器类名 | string | ||
okButtonDisabled | 确定按钮是否禁用 | boolean | false | |
cancelButtonDisabled | 取消按钮是否禁用 | boolean | false |
# Modal 事件
事件名称 | 说明 | 回调参数 |
---|---|---|
cancel | 关闭对话框的回调 | function(e) |
ok | 点击确定回调 | function(e) |
# Modal.method()
包括:
- Modal.info
- Modal.success
- Modal.error
- Modal.warning
- Modal.confirm 以上均为一个函数,参数为object,具体属性如下:
参数 | 说明 | 类型 | 默认值 | 版本 |
---|---|---|---|---|
cancelText | 取消按钮文字 | string | 取消 | |
confirmLoading | 确定按钮 loading | boolean | false | |
okText | 确认按钮文字 | string | 确定 | |
title | 标题 | string | ||
content | 内容 | string | ||
okButtonDisabled | 确定按钮是否禁用 | boolean | false | |
cancelButtonDisabled | 取消按钮是否禁用 | boolean | false | |
onCancel | 取消回调 | function | ||
onOk | 确定回调 | function |