Browse Source

refactor: improve digital input in tooltip demo (#20702)

* refactor: improve digital input in tooltip demo

* fix lint
pull/20720/head
骗你是小猫咪 5 years ago
committed by 偏右
parent
commit
5398f24a97
  1. 6
      components/input/demo/tooltip.md

6
components/input/demo/tooltip.md

@ -35,7 +35,7 @@ function formatNumber(value) {
class NumericInput extends React.Component { class NumericInput extends React.Component {
onChange = e => { onChange = e => {
const { value } = e.target; const { value } = e.target;
const reg = /^-?(0|[1-9][0-9]*)(\.[0-9]*)?$/; const reg = /^-?[0-9]*(\.[0-9]*)?$/;
if ((!isNaN(value) && reg.test(value)) || value === '' || value === '-') { if ((!isNaN(value) && reg.test(value)) || value === '' || value === '-') {
this.props.onChange(value); this.props.onChange(value);
} }
@ -44,9 +44,11 @@ class NumericInput extends React.Component {
// '.' at the end or only '-' in the input box. // '.' at the end or only '-' in the input box.
onBlur = () => { onBlur = () => {
const { value, onBlur, onChange } = this.props; const { value, onBlur, onChange } = this.props;
let valueTemp = value;
if (value.charAt(value.length - 1) === '.' || value === '-') { if (value.charAt(value.length - 1) === '.' || value === '-') {
onChange(value.slice(0, -1)); valueTemp = value.slice(0, -1);
} }
onChange(valueTemp.replace(/0*(\d+)/, '$1'));
if (onBlur) { if (onBlur) {
onBlur(); onBlur();
} }

Loading…
Cancel
Save