|
|
|
@ -200,6 +200,7 @@ export class TopBar extends React.Component {
|
|
|
|
|
<Col span={6}>
|
|
|
|
|
{getLabel(547293, labelData)}:
|
|
|
|
|
<Select
|
|
|
|
|
disabled
|
|
|
|
|
defaultValue="0"
|
|
|
|
|
style={{ width: 140 }}
|
|
|
|
|
value={this.state.requestData.fclass}
|
|
|
|
@ -248,11 +249,15 @@ export class TopBar extends React.Component {
|
|
|
|
|
<Checkbox
|
|
|
|
|
style={{ marginTop: '5px', marginLeft: 100 }}
|
|
|
|
|
checked={this.state.requestData.hidedept == '1'}
|
|
|
|
|
onChange={(e) =>
|
|
|
|
|
onChange={(e) => {
|
|
|
|
|
this.handleFormChange({
|
|
|
|
|
hidedept: e.target.checked ? '1' : '0',
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.props.onSearch({
|
|
|
|
|
...this.state.requestData,
|
|
|
|
|
hidedept: e.target.checked ? '1' : '0',
|
|
|
|
|
});
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
{getLabel(547296, labelData)}
|
|
|
|
|
</Checkbox>
|
|
|
|
|