mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 20:18:03 +08:00
1.7 KiB
Executable File
1.7 KiB
Executable File
title | description | type | group | menuName | icon | order |
---|---|---|---|---|---|---|
Number 数字输入框 | 0 | null | Number | 32 |
基本用法
{
"type": "form",
"api": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/form/saveForm",
"controls": [
{
"type": "number",
"name": "number",
"label": "数字"
}
]
}
原生数字组件
原生数字组件将直接使用浏览器的实现,最终展现效果和浏览器有关,而且只支持 min
、max
、step
这几个属性设置。
{
"type": "form",
"api": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/form/saveForm",
"controls": [
{
"type": "native-number",
"name": "number",
"label": "数字"
}
]
}
属性表
当做选择器表单项使用时,除了支持 普通表单项属性表 中的配置以外,还支持下面一些配置
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
min | 模板 | 最小值 | |
max | 模板 | 最大值 | |
step | number |
步长 | |
precision | number |
精度,即小数点后几位 | |
showSteps | boolean |
是否显示上下点击按钮 |