You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
3.0 KiB
114 lines
3.0 KiB
import React, { useState } from 'react';
|
|
import { PlusOutlined } from '@ant-design/icons';
|
|
import {
|
|
Form,
|
|
Input,
|
|
Button,
|
|
Radio,
|
|
Select,
|
|
Cascader,
|
|
DatePicker,
|
|
InputNumber,
|
|
TreeSelect,
|
|
Switch,
|
|
Checkbox,
|
|
Upload,
|
|
} from 'antd';
|
|
|
|
const { RangePicker } = DatePicker;
|
|
const { TextArea } = Input;
|
|
|
|
const FormDisabledDemo: React.FC = () => {
|
|
const [componentDisabled, setComponentDisabled] = useState<boolean>(true);
|
|
const onFormLayoutChange = ({ disabled }: { disabled: boolean }) => {
|
|
setComponentDisabled(disabled);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Checkbox
|
|
checked={componentDisabled}
|
|
onChange={(e) => setComponentDisabled(e.target.checked)}
|
|
>
|
|
Form disabled
|
|
</Checkbox>
|
|
<Form
|
|
labelCol={{ span: 4 }}
|
|
wrapperCol={{ span: 14 }}
|
|
layout="horizontal"
|
|
onValuesChange={onFormLayoutChange}
|
|
disabled={componentDisabled}
|
|
style={{ maxWidth: 600 }}
|
|
>
|
|
<Form.Item label="Checkbox" name="disabled" valuePropName="checked">
|
|
<Checkbox>Checkbox</Checkbox>
|
|
</Form.Item>
|
|
<Form.Item label="Radio">
|
|
<Radio.Group>
|
|
<Radio value="apple"> Apple </Radio>
|
|
<Radio value="pear"> Pear </Radio>
|
|
</Radio.Group>
|
|
</Form.Item>
|
|
<Form.Item label="Input">
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item label="Select">
|
|
<Select>
|
|
<Select.Option value="demo">Demo</Select.Option>
|
|
</Select>
|
|
</Form.Item>
|
|
<Form.Item label="TreeSelect">
|
|
<TreeSelect
|
|
treeData={[
|
|
{ title: 'Light', value: 'light', children: [{ title: 'Bamboo', value: 'bamboo' }] },
|
|
]}
|
|
/>
|
|
</Form.Item>
|
|
<Form.Item label="Cascader">
|
|
<Cascader
|
|
options={[
|
|
{
|
|
value: 'zhejiang',
|
|
label: 'Zhejiang',
|
|
children: [
|
|
{
|
|
value: 'hangzhou',
|
|
label: 'Hangzhou',
|
|
},
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</Form.Item>
|
|
<Form.Item label="DatePicker">
|
|
<DatePicker />
|
|
</Form.Item>
|
|
<Form.Item label="RangePicker">
|
|
<RangePicker />
|
|
</Form.Item>
|
|
<Form.Item label="InputNumber">
|
|
<InputNumber />
|
|
</Form.Item>
|
|
<Form.Item label="TextArea">
|
|
<TextArea rows={4} />
|
|
</Form.Item>
|
|
<Form.Item label="Switch" valuePropName="checked">
|
|
<Switch />
|
|
</Form.Item>
|
|
<Form.Item label="Upload" valuePropName="fileList">
|
|
<Upload action="/upload.do" listType="picture-card">
|
|
<div>
|
|
<PlusOutlined />
|
|
<div style={{ marginTop: 8 }}>Upload</div>
|
|
</div>
|
|
</Upload>
|
|
</Form.Item>
|
|
<Form.Item label="Button">
|
|
<Button>Button</Button>
|
|
</Form.Item>
|
|
</Form>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default () => <FormDisabledDemo />;
|
|
|