mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
除了自定义页脚外,点击取消不需要手动设置关闭
This commit is contained in:
parent
4af25dffb2
commit
539ac64998
@ -26,12 +26,6 @@ var Test = React.createClass({
|
|||||||
visible: false
|
visible: false
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleCancel() {
|
|
||||||
console.log('点击了取消');
|
|
||||||
this.setState({
|
|
||||||
visible: false
|
|
||||||
});
|
|
||||||
},
|
|
||||||
render() {
|
render() {
|
||||||
return <div>
|
return <div>
|
||||||
<button className="ant-btn ant-btn-primary" onClick={this.showModal}>显示对话框</button>
|
<button className="ant-btn ant-btn-primary" onClick={this.showModal}>显示对话框</button>
|
||||||
|
@ -34,9 +34,6 @@ var Test = React.createClass({
|
|||||||
},
|
},
|
||||||
handleCancel() {
|
handleCancel() {
|
||||||
console.log('点击了取消');
|
console.log('点击了取消');
|
||||||
this.setState({
|
|
||||||
visible: false
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
return <div>
|
return <div>
|
||||||
|
@ -12,8 +12,7 @@ export default React.createClass({
|
|||||||
},
|
},
|
||||||
|
|
||||||
handleCancel() {
|
handleCancel() {
|
||||||
var d = this.refs.d;
|
this.refs.d.requestClose();
|
||||||
d.requestClose();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
getDefaultProps() {
|
getDefaultProps() {
|
||||||
|
Loading…
Reference in New Issue
Block a user