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