Module: miot/ui/NumberSpinner

数字选择器

Properties:
Name Type Description
visible bool

是否可见

unit string

单位

max int

最大值

min int

最小值

interval int

步长,默认为1

defaultValue int

默认值

valueFormat string

格式

onNumberChanged func

值改变的回调

Since:
  • 10003
Example
<NumberSpinner
        style={{width:200, height:100}}
        maxValue={30}
        minValue={1}
        defaultValue={5}
        unit={"km"}
        onNumberChanged={data=>{
            console.log(`newValue:${data.newValue},oldValue:${data.oldValue}`);
        }}
    />


                
    <NumberSpinner
        style={{width:300, height:200}}
        maxValue={30}
        minValue={-100}
        interval={2.5}
        defaultValue={80}
        valueFormat={"%.1f"}
        unit={"km"}
        onNumberChanged={data=>{
            console.log(`newValue:${data.newValue},oldValue:${data.oldValue}`);
        }}
    />