diff --git a/web/client/src/sections/install/components/adminModal.jsx b/web/client/src/sections/install/components/adminModal.jsx index 4417bac..262838a 100644 --- a/web/client/src/sections/install/components/adminModal.jsx +++ b/web/client/src/sections/install/components/adminModal.jsx @@ -117,6 +117,7 @@ function adminModal (props) { style={{ width: 417 }} rules={[{ required: true, message: "请选择部门" }]} initValue={departmentId || ""} + filter showClear > { @@ -139,6 +140,7 @@ function adminModal (props) { rules={[{ required: true, message: "请选择人员" }]} initValue={peopleId || ""} showClear + filter disabled={disablePeople} > { diff --git a/web/client/src/sections/install/components/memberModal.jsx b/web/client/src/sections/install/components/memberModal.jsx index 48b6808..72fb389 100644 --- a/web/client/src/sections/install/components/memberModal.jsx +++ b/web/client/src/sections/install/components/memberModal.jsx @@ -139,6 +139,7 @@ function memberModal (props) { style={{ width: 417 }} rules={[{ required: true, message: "请选择部门" }]} showClear + filter initValue={departmentId || ""} disabled={memberEdit} > @@ -157,6 +158,7 @@ function memberModal (props) {