Commit 453ee33e by zhaochengxiang

模型去掉状态过滤

parent 4e1c3ea3
...@@ -656,27 +656,6 @@ class Model extends React.Component { ...@@ -656,27 +656,6 @@ class Model extends React.Component {
</Space> </Space>
<Space> <Space>
{
(currentView==='dir'||keyword!=='') && <Space>
<Select
style={{ width: 120 }}
onChange={(value) => {
this.onModelStateChange(value);
}}
loading={loadingStates}
value={loadingStates? '': currentModelState}
>
{
(modelStates||[]).map(item => {
return (
<Option key={item.id} value={item.id}>{item.cnName||''}</Option>
);
})
}
</Select>
</Space>
}
<Space>
<InputDebounce <InputDebounce
placeholder="通过模型名称全文搜索" placeholder="通过模型名称全文搜索"
allowClear allowClear
...@@ -684,7 +663,6 @@ class Model extends React.Component { ...@@ -684,7 +663,6 @@ class Model extends React.Component {
onChange={(value) => { this.onSearchInputChange(value); }} onChange={(value) => { this.onSearchInputChange(value); }}
style={{ width: inputWidth, marginLeft: 'auto' }} style={{ width: inputWidth, marginLeft: 'auto' }}
/> />
</Space>
<Button onClick={this.onSearchPropertiesClick}>筛选</Button> <Button onClick={this.onSearchPropertiesClick}>筛选</Button>
</Space> </Space>
......
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