tangjie 2026-07-14 10:43:09 +08:00
parent 21de8ccd70
commit d83e4daee3
1 changed files with 2 additions and 1 deletions

View File

@ -223,12 +223,13 @@ const RegisterMore = (props) => {
> >
<Select <Select
options={QUALIFICATION_INDUSTRY_OPTIONS} options={QUALIFICATION_INDUSTRY_OPTIONS}
mode="multiple"
placeholder="请选择安全生产监管行业类别" placeholder="请选择安全生产监管行业类别"
allowClear allowClear
onChange={(value, option) => { onChange={(value, option) => {
form.setFieldValue( form.setFieldValue(
"safetyIndustryCategoryName", "safetyIndustryCategoryName",
option?.label || "", option?.map((item) => item.label).join(",") || "",
); );
}} }}
/> />