title |
nav |
group |
InputNumber - 数字框 |
|
order |
title |
path |
1 |
Schemas |
/client/schemas |
|
InputNumber - 数字框
节点树
代码演示
数字框
/**
* title: 数字框
*/
import React from 'react';
import { SchemaRenderer } from '../';
const schema = {
type: 'object',
properties: {
input: {
type: 'number',
title: `编辑模式`,
'x-decorator': 'FormItem',
'x-component': 'InputNumber',
'x-reactions': {
target: 'read',
fulfill: {
state: {
value: '{{$self.value}}',
},
},
},
},
read: {
interface: 'number',
type: 'number',
title: `阅读模式`,
'x-read-pretty': true,
'x-decorator': 'FormItem',
'x-component': 'InputNumber',
},
}
};
export default () => {
return (
<SchemaRenderer schema={schema} />
);
};
百分比
/**
* title: 百分比
*/
import React from 'react';
import { SchemaRenderer } from '../';
const schema = {
type: 'object',
properties: {
input: {
type: 'number',
title: `编辑模式`,
'x-decorator': 'FormItem',
'x-component': 'InputNumber',
'x-component-props': {
placeholder: 'please enter',
formatter: value => `${value}%`,
parser: value => value.replace('%', ''),
},
'x-reactions': {
target: 'read',
fulfill: {
state: {
value: '{{$self.value}}',
},
},
},
},
read: {
type: 'number',
title: `阅读模式`,
'x-read-pretty': true,
'x-decorator': 'FormItem',
'x-component': 'InputNumber',
'x-component-props': {
placeholder: 'please enter',
formatter: value => `${value}%`,
parser: value => value.replace('%', ''),
},
},
}
};
export default () => {
return (
<SchemaRenderer schema={schema} />
);
};