From 65c8026eaeff3d769a1d168933e13035708233e0 Mon Sep 17 00:00:00 2001 From: zhangyongtian <1181606322@qq.com> Date: Thu, 05 Sep 2024 10:00:48 +0800 Subject: [PATCH] 合并冲突 --- gz-customerSystem/src/components/SelectObjModal/selectPerson.jsx | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gz-customerSystem/src/components/SelectObjModal/selectPerson.jsx b/gz-customerSystem/src/components/SelectObjModal/selectPerson.jsx index a336479..4a9c2e0 100644 --- a/gz-customerSystem/src/components/SelectObjModal/selectPerson.jsx +++ b/gz-customerSystem/src/components/SelectObjModal/selectPerson.jsx @@ -2,7 +2,7 @@ * @Author: dminyi 1301963064@qq.com * @Date: 2024-08-29 17:41:09 * @LastEditors: dminyi 1301963064@qq.com - * @LastEditTime: 2024-08-29 20:03:51 + * @LastEditTime: 2024-09-04 15:16:56 * @FilePath: \gzDyh\gz-customerSystem\src\components\SelectObjModal\selectPerson.jsx * @Description: 选择经办人 */ @@ -31,7 +31,7 @@ * onClose, // 关闭 * onOk, // 点击确定的回调 */ -const SelectObjModal = ({ visible = false, checkKeys = [], type = 'person', isCheckbox = false, searchData = {}, onClose, onOk }) => { +const SelectObjModal = ({ visible = false, checkKeys = [], type = 'person', isCheckbox = false, searchData = {}, onClose, onOk, }) => { const [data, setData] = useState([]); const [checkedKeys, setCheckedKeys] = useState({ keys: [], items: [] }); @@ -149,6 +149,7 @@ // 默认调解员查询'22_00024-4' const searchRole = type === 'person' ? { roleCode: '22_00024-4' } : {}; + console.log(checkedKeys.keys,'checkedKeys.keyscheckedKeys.keys') useEffect(() => { if (!visible) return; // 获取数据 -- Gitblit v1.8.0