Browse Source

Merge branch 'Carrotzpc-develop-0.12.0' into develop-0.12.0

pull/911/head
afc163 9 years ago
parent
commit
e91b630e8a
  1. 2
      components/tag/demo/basic.md
  2. 2
      components/tag/index.jsx
  3. 1
      components/tag/index.md

2
components/tag/demo/basic.md

@ -17,6 +17,6 @@ ReactDOM.render(<div>
<Tag>标签一</Tag>
<Tag>标签二</Tag>
<Tag closable onClose={onClose}>标签三</Tag>
<Tag href="http://www.baidu.com">标签四(链接)</Tag>
<a href="https://www.alipay.com/" target="_blank"><Tag>标签四(链接)</Tag></a>
</div>, mountNode);
````

2
components/tag/index.jsx

@ -45,7 +45,7 @@ class AntTag extends React.Component {
transitionName={this.props.prefixCls + '-zoom'}
onEnd={this.animationEnd.bind(this)}>
<div data-show={!this.state.closing} className={className}>
<a className={this.props.prefixCls + '-text'} {...this.props} />
<span className={this.props.prefixCls + '-text'} {...this.props} />
{close}
</div>
</Animate>

1
components/tag/index.md

@ -17,7 +17,6 @@
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|----------------|--------------------------------|------------|---------|--------|
| href | 链接的地址,会传给 a 标签 | string | | false |
| closable | 标签是否可以关闭 | boolean | | false |
| onClose | 组合时根据此项判定checked | function | | 无 |
| color | 标签的色彩 | string | blue green yellow red | 无 |

Loading…
Cancel
Save