| import TopNItem from '@/components/top-n-item'; | |
| import { Form } from 'antd'; | |
| import { IOperatorForm } from '../../interface'; | |
| import DynamicInputVariable from '../components/dynamic-input-variable'; | |
| const AkShareForm = ({ onValuesChange, form, node }: IOperatorForm) => { | |
| return ( | |
| <Form | |
| name="basic" | |
| autoComplete="off" | |
| form={form} | |
| onValuesChange={onValuesChange} | |
| layout={'vertical'} | |
| > | |
| <DynamicInputVariable nodeId={node?.id}></DynamicInputVariable> | |
| <TopNItem initialValue={10} max={99}></TopNItem> | |
| </Form> | |
| ); | |
| }; | |
| export default AkShareForm; | |