Compare commits
No commits in common. "ed9cef3c35da1f11654a1297b6caa7db7ba27d49" and "043fd34517c441161a07783cdbd3990a0ab0c04d" have entirely different histories.
ed9cef3c35
...
043fd34517
|
|
@ -198,14 +198,13 @@ function OrgInfoPage(props) {
|
||||||
>
|
>
|
||||||
<Select
|
<Select
|
||||||
options={QUALIFICATION_INDUSTRY_OPTIONS}
|
options={QUALIFICATION_INDUSTRY_OPTIONS}
|
||||||
// mode="multiple"
|
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(",") || "",
|
||||||
//option?.map((item) => item.label).join(",") || "",
|
|
||||||
);
|
);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue