Compare commits
2 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
89168622bc | |
|
|
442250bcac |
|
|
@ -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}
|
||||
|
|
@ -229,7 +230,7 @@ export class TopBar extends React.Component {
|
|||
))}
|
||||
</Select>
|
||||
</Col>
|
||||
<Col span={6}>
|
||||
{/* <Col span={6}>
|
||||
{getLabel(547294, labelData)}:
|
||||
<TreeSelect
|
||||
treeDataSimpleMode
|
||||
|
|
@ -243,16 +244,20 @@ export class TopBar extends React.Component {
|
|||
treeData={rootTreeData}
|
||||
treeIcon
|
||||
/>
|
||||
</Col>
|
||||
</Col> */}
|
||||
<Col span={6}>
|
||||
<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>
|
||||
|
|
@ -266,7 +271,7 @@ export class TopBar extends React.Component {
|
|||
/>
|
||||
</Tooltip>
|
||||
</Col>
|
||||
<Col span={6}>
|
||||
{/* <Col span={6}>
|
||||
{getLabel(547299, labelData)}:
|
||||
<Select
|
||||
defaultValue="3"
|
||||
|
|
@ -279,10 +284,10 @@ export class TopBar extends React.Component {
|
|||
<Option value="3">{getLabel(547464, labelData)}</Option>
|
||||
<Option value="4">{getLabel(547465, labelData)}</Option>
|
||||
</Select>
|
||||
</Col>
|
||||
</Row>
|
||||
<Row style={{ marginTop: '15px' }}>
|
||||
<Col span={6}>
|
||||
</Col> */}
|
||||
{/* </Row> */}
|
||||
{/* <Row style={{ marginTop: '15px' }}> */}
|
||||
{/* <Col span={6}>
|
||||
<Checkbox
|
||||
style={{ marginTop: '5px' }}
|
||||
checked={this.state.requestData.fisvitual == '1'}
|
||||
|
|
@ -303,8 +308,8 @@ export class TopBar extends React.Component {
|
|||
style={{ color: '#0082fb', cursor: 'pointer', fontSize: 16 }}
|
||||
/>
|
||||
</Tooltip>
|
||||
</Col>
|
||||
<Col span={16}>
|
||||
</Col> */}
|
||||
<Col span={12}>
|
||||
{this.state.requestData.fclass == '0' && (
|
||||
<span>
|
||||
<Button
|
||||
|
|
|
|||
Loading…
Reference in New Issue