dev_1.0.1
tangjie 2026-07-15 09:54:47 +08:00
parent ed9cef3c35
commit 4f883a176b
2 changed files with 3 additions and 3 deletions

View File

@ -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(",") || "",
); );
}} }}
/> />

View File

@ -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";