Commit e4ccba4e authored by 邓超's avatar 邓超
parents 66bcc20e 90f61651
Pipeline #63681 waiting for manual action with stages
......@@ -174,4 +174,7 @@ iframe {
.ant-spin-container {
height: 100%;
}
textarea.ant-input {
border:1px solid #d9d9d9 ;
}
}
\ No newline at end of file
......@@ -244,8 +244,10 @@ const SiteManageV2 = () => {
PageIndex: 1,
PageSize: 10,
};
setCheckLoading(true);
if (value) params = { ...params, key: value };
getGroupUserTree(params).then(res => {
setCheckLoading(false);
if (res.code === 0 && res.data) {
setShowSearchStyle(true);
let list = res.data.data;
......@@ -321,6 +323,7 @@ const SiteManageV2 = () => {
const handleChange = e => {
setName(e.target.value);
handleSearch(e.target.value);
};
// 获取当前站点所有已经勾选的用户新接口
......@@ -787,8 +790,8 @@ const SiteManageV2 = () => {
allowClear
placeholder={placeholder}
onSearch={handleSearch}
value={name}
onChange={e => handleChange(e)}
// value={name}
// onChange={e => handleChange(e)}
enterButton
/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment