fix
parent
ed9cef3c35
commit
4f883a176b
|
|
@ -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(",") || "",
|
|
||||||
);
|
);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ import {
|
||||||
Table,
|
Table,
|
||||||
TreeSelect,
|
TreeSelect,
|
||||||
} from "antd";
|
} from "antd";
|
||||||
|
import { Get } from "@cqsjjb/jjb-common-lib/http";
|
||||||
import { useEffect, useRef, useState } from "react";
|
import { useEffect, useRef, useState } from "react";
|
||||||
import dayjs from "dayjs";
|
import dayjs from "dayjs";
|
||||||
import PageLayout from "@cqsjjb/jjb-react-admin-component/PageLayout";
|
import PageLayout from "@cqsjjb/jjb-react-admin-component/PageLayout";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue