ant-design/components/modal/index.md

41 lines
1.6 KiB
Markdown
Raw Normal View History

2015-05-27 15:43:29 +08:00
# Modal
2015-07-20 12:28:36 +08:00
- order: 11
2015-06-02 12:11:49 +08:00
- category: Components
2015-05-27 15:43:29 +08:00
- chinese: 对话框
---
2015-06-05 10:39:30 +08:00
模态对话框。
## 何时使用
需要用户处理事务,又不希望跳转页面以致打断工作流程时,可以使用 `Modal` 在当前页面正中打开一个浮层,承载相应的操作。
2015-06-12 19:41:30 +08:00
另外当需要一个简洁的确认框询问用户时,可以使用精心封装好的 `ant.confirm()`
2015-06-05 10:39:30 +08:00
## API
2015-05-27 15:43:29 +08:00
2015-06-10 16:43:35 +08:00
| 参数 | 说明 | 类型 | 默认值 |
|------------|----------------|------------------|--------------|
| title | 标题 | React.Element | 无 |
2015-06-10 22:02:13 +08:00
| onOk | 点击确定回调 | function | 无 |
2015-06-25 15:35:46 +08:00
| onCancel | 点击遮罩层或右上角叉或取消按钮的回调 | function | 无 |
2015-06-10 22:02:13 +08:00
| width | 宽度 | String or Number | 500 |
2015-06-10 16:43:35 +08:00
| footer | 底部内容 | React.Element | 确定取消按钮 |
2015-06-12 19:41:30 +08:00
### confirm()
`confirm` 为一个方法,参数为 object具体属性如下
| 参数 | 说明 | 类型 | 默认值 |
|------------|----------------|------------------|--------------|
| title | 标题 | React.Element or String | 无 |
2015-06-25 15:29:56 +08:00
| onOk | 点击确定回调,参数为关闭函数,返回 promise 时 resolve 后自动关闭 | function | 无 |
| onCancel | 取消回调,参数为关闭函数,返回 promise 时 resolve 后自动关闭 | function | 无 |
2015-06-12 19:41:30 +08:00
| width | 宽度 | String or Number | 375 |
| iconClassName | 图标样式名 | String | anticon-exclamation-circle |