/** * title: 勾选 */ import React from 'react'; import { SchemaComponentProvider, SchemaComponent } from '@nocobase/client'; import { Checkbox } from '..'; import { FormItem } from '@formily/antd'; const schema = { type: 'object', properties: { input: { interface: 'string', type: 'string', title: `编辑模式`, 'x-decorator': 'FormItem', 'x-component': 'Checkbox', 'x-reactions': { target: 'read', fulfill: { state: { value: '{{$self.value}}', }, }, }, }, read: { interface: 'string', type: 'string', title: `阅读模式`, 'x-read-pretty': true, 'x-decorator': 'FormItem', 'x-component': 'Checkbox', }, }, }; export default () => { return ( ); };