22 lines
581 B
TypeScript
22 lines
581 B
TypeScript
|
import TopNItem from '@/components/top-n-item';
|
||
|
import { Form } from 'antd';
|
||
|
import { IOperatorForm } from '../../interface';
|
||
|
import DynamicInputVariable from '../components/dynamic-input-variable';
|
||
|
|
||
|
const BaiduForm = ({ onValuesChange, form, node }: IOperatorForm) => {
|
||
|
return (
|
||
|
<Form
|
||
|
name="basic"
|
||
|
autoComplete="off"
|
||
|
form={form}
|
||
|
onValuesChange={onValuesChange}
|
||
|
layout={'vertical'}
|
||
|
>
|
||
|
<DynamicInputVariable node={node}></DynamicInputVariable>
|
||
|
<TopNItem initialValue={10}></TopNItem>
|
||
|
</Form>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default BaiduForm;
|