dev
tangjie 2026-07-14 14:10:10 +08:00
parent d83e4daee3
commit 6e192cdb3f
1 changed files with 3 additions and 2 deletions

View File

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