2015-11-18 17:05:56 +08:00
|
|
|
# 动态
|
|
|
|
|
|
|
|
- order: 4
|
|
|
|
|
|
|
|
展示动态变化的效果。
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Badge, Button, Icon } from 'antd';
|
|
|
|
const ButtonGroup = Button.Group;
|
|
|
|
|
|
|
|
const Test = React.createClass({
|
|
|
|
getInitialState() {
|
|
|
|
return {
|
2015-11-20 14:41:11 +08:00
|
|
|
count: 691,
|
2015-11-18 23:42:01 +08:00
|
|
|
show: true,
|
2015-11-18 17:05:56 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
increase() {
|
2015-11-20 14:41:11 +08:00
|
|
|
const count = this.state.count + 117;
|
2015-11-18 17:05:56 +08:00
|
|
|
this.setState({ count });
|
|
|
|
},
|
|
|
|
decline() {
|
2015-11-20 14:41:11 +08:00
|
|
|
let count = this.state.count - 111;
|
2015-11-18 17:05:56 +08:00
|
|
|
if (count < 0) {
|
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
this.setState({ count });
|
|
|
|
},
|
2015-11-18 23:42:01 +08:00
|
|
|
onClick() {
|
2015-11-19 00:13:16 +08:00
|
|
|
this.setState({
|
|
|
|
show: !this.state.show
|
|
|
|
});
|
|
|
|
},
|
2015-11-18 23:42:01 +08:00
|
|
|
onNumberClick(){
|
|
|
|
const count = this.state.count;
|
|
|
|
this.setState({
|
2015-11-19 00:13:16 +08:00
|
|
|
count: count ? 0 : 5
|
|
|
|
});
|
2015-11-18 23:42:01 +08:00
|
|
|
},
|
2015-11-18 17:05:56 +08:00
|
|
|
render() {
|
2015-11-20 14:41:11 +08:00
|
|
|
console.log(this.state.count)
|
2015-11-18 17:05:56 +08:00
|
|
|
return <div>
|
|
|
|
<Badge count={this.state.count}>
|
|
|
|
<a href="#" className="head-example"></a>
|
|
|
|
</Badge>
|
2015-11-18 23:42:01 +08:00
|
|
|
<Badge dot={this.state.show}>
|
|
|
|
<a href="#">一个链接</a>
|
|
|
|
</Badge>
|
2015-11-18 17:05:56 +08:00
|
|
|
<div style={{ marginTop: 10 }}>
|
|
|
|
<ButtonGroup>
|
|
|
|
<Button type="ghost" onClick={this.decline}>
|
|
|
|
<Icon type="minus" />
|
|
|
|
</Button>
|
|
|
|
<Button type="ghost" onClick={this.increase}>
|
|
|
|
<Icon type="plus" />
|
|
|
|
</Button>
|
|
|
|
</ButtonGroup>
|
2015-11-18 23:42:01 +08:00
|
|
|
<Button type="ghost" onClick={this.onClick} style={{marginLeft:10}}>点切换</Button>
|
|
|
|
<Button type="ghost" onClick={this.onNumberClick} style={{marginLeft:10}}>数字切换</Button>
|
2015-11-18 17:05:56 +08:00
|
|
|
</div>
|
|
|
|
</div>;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Test />
|
|
|
|
, document.getElementById('components-badge-demo-change'));
|
|
|
|
````
|