import { Balloon, Checkbox, Form, FormItem, Icon, Input, Radio, Select } from '@alicloud/console-components'; import React, { useState } from 'react'; const formItemLayout = { labelCol: { span: 8, }, wrapperCol: { span: 16, }, }; export const dataSource = [ { value: '10001', label: '选项A', }, { value: '10002', label: '选项B', }, ]; export default () => { const [visible, setVisible] = useState(false); const handleSubmit = (values) => { // @ts-ignore console.log('Get form value:', values); }; const renderLable = (text: string) => ( {text} } closable={false} > blablablablablablablabla ); return (
选项1 选项2 选项3 选项1

对于选项的描述/解释文案,#808080,12px

选项2

对于选项的描述/解释文案,#808080,12px

提交 setVisible(!visible)} > 取消
); };