2015-07-28 15:40:28 +08:00
|
|
|
# 带有Icon的通知提醒框
|
|
|
|
|
2015-08-03 15:17:12 +08:00
|
|
|
- order: 2
|
2015-07-28 15:40:28 +08:00
|
|
|
|
2015-08-06 15:19:45 +08:00
|
|
|
通知提醒框左侧有图标。
|
2015-07-28 15:40:28 +08:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Button, notification } from 'antd';
|
2015-07-28 15:40:28 +08:00
|
|
|
|
2015-10-28 20:55:49 +08:00
|
|
|
const openNotificationWithIcon = function(type) {
|
2015-08-04 15:16:10 +08:00
|
|
|
return function(){
|
2015-08-06 15:19:45 +08:00
|
|
|
notification[type]({
|
2015-11-25 17:35:49 +08:00
|
|
|
message: '这是标题',
|
|
|
|
description: '这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案'
|
2015-08-06 15:19:45 +08:00
|
|
|
});
|
2015-08-04 15:16:10 +08:00
|
|
|
};
|
2015-08-03 15:17:12 +08:00
|
|
|
};
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(<div>
|
2015-10-08 15:13:04 +08:00
|
|
|
<Button onClick={openNotificationWithIcon('success')}>成功</Button>
|
|
|
|
<Button onClick={openNotificationWithIcon('info')}>消息</Button>
|
|
|
|
<Button onClick={openNotificationWithIcon('warn')}>警告</Button>
|
|
|
|
<Button onClick={openNotificationWithIcon('error')}>错误</Button>
|
2015-08-03 15:17:12 +08:00
|
|
|
</div>
|
2015-07-30 21:04:52 +08:00
|
|
|
, document.getElementById('components-notification-demo-with-icon'));
|
2015-08-04 15:48:00 +08:00
|
|
|
````
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.code-box-demo .ant-btn {
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
</style>
|