2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 2
|
|
|
|
title: 带有Icon的通知提醒框
|
|
|
|
---
|
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
|
|
|
|
2016-01-27 16:53:05 +08:00
|
|
|
const openNotificationWithIcon = function (type) {
|
|
|
|
return function () {
|
2015-08-06 15:19:45 +08:00
|
|
|
notification[type]({
|
2015-11-25 17:35:49 +08:00
|
|
|
message: '这是标题',
|
2016-05-11 09:32:33 +08:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2016-01-07 16:29:12 +08:00
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<Button onClick={openNotificationWithIcon('success')}>成功</Button>
|
|
|
|
<Button onClick={openNotificationWithIcon('info')}>消息</Button>
|
2016-03-28 14:38:25 +08:00
|
|
|
<Button onClick={openNotificationWithIcon('warning')}>警告</Button>
|
2016-01-07 16:29:12 +08:00
|
|
|
<Button onClick={openNotificationWithIcon('error')}>错误</Button>
|
2015-08-03 15:17:12 +08:00
|
|
|
</div>
|
2015-12-29 12:08:58 +08:00
|
|
|
, mountNode);
|
2015-08-04 15:48:00 +08:00
|
|
|
````
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.code-box-demo .ant-btn {
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
</style>
|