| 123456789101112131415161718192021222324252627282930313233343536373839 |
- import { ProFormSelect } from "@ant-design/pro-components";
- import { useIntl } from "react-intl";
- const Widget = () => {
- const intl = useIntl();
- const options = [
- {
- value: 0,
- label: intl.formatMessage({
- id: "forms.fields.publicity.disable.label",
- }),
- },
- {
- value: 10,
- label: intl.formatMessage({
- id: "forms.fields.publicity.private.label",
- }),
- },
- {
- value: 30,
- label: intl.formatMessage({
- id: "forms.fields.publicity.public.label",
- }),
- },
- ];
- return (
- <ProFormSelect
- options={options}
- initialValue={10}
- width="sm"
- name="status"
- allowClear={false}
- label={intl.formatMessage({ id: "forms.fields.publicity.label" })}
- />
- );
- };
- export default Widget;
|