Currency货币输入框
货币输入框。
何时使用
代码演示
基本使用。
import { Currency, Row, Col } from 'choerodon-ui/pro';
ReactDOM.render(
<div>
<Row gutter={10}>
<Col span={12}>
<Currency defaultValue={10000} />
</Col>
<Col span={12}>
<Currency currency="CNY" defaultValue={10000} />
</Col>
</Row>
</div>,
mountNode
);
绑定数据源。
import { DataSet, Currency } from 'choerodon-ui/pro';
function handleDataSetChange({ record, name, value, oldValue }) {
console.log('[dataset newValue]', value, '[oldValue]', oldValue, `[record.get('${name}')]`, record.get(name));
}
class App extends React.Component {
ds = new DataSet({
autoCreate: true,
fields: [
{ name: 'money', type: 'number', defaultValue: 100000000000000, required: true, currency: 'USD' },
],
events: {
update: handleDataSetChange,
},
});
render() {
return <Currency dataSet={this.ds} name="money" />;
}
}
ReactDOM.render(
<App />,
mountNode
);
受控货币输入框
import { Currency } from 'choerodon-ui/pro';
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
value: 100,
};
}
handleChange = (value, oldValue) => {
console.log('[newValue]', value, '[oldValue]', oldValue);
this.setState({
value,
});
}
render() {
return <Currency value={this.state.value} onChange={this.handleChange} />;
}
}
ReactDOM.render(
<App />,
mountNode
);
API
Currency
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
currency | 货币代码,详见Current currency & funds code list. | string |
更多属性请参考 NumberField。
static method
名称 | 说明 | 参数 |
---|---|---|
format(value, lang, options) | 货币格式化 | value - 数值 lang - 语言代码 options - 详见Intl.NumberFormatOptions |