fanjie 3 years ago
commit e48de02c2e

Binary file not shown.

@ -79,8 +79,8 @@ export class TopBar extends React.Component {
render() { render() {
return ( return (
<div className={style.topbarWrapper} style={{ display: 'flex' }}> <div className={style.topbarWrapper}>
<Row style={{ flex: 1 }}> <Row>
<Col span={5}> <Col span={5}>
数据日期 数据日期
<DatePicker <DatePicker
@ -149,7 +149,7 @@ export class TopBar extends React.Component {
</Select> </Select>
</Col> </Col>
<Col span={5} style={{ marginTop: 10 }}> <Col span={3}>
<Checkbox <Checkbox
style={{ marginTop: '5px' }} style={{ marginTop: '5px' }}
onChange={(e) => onChange={(e) =>
@ -161,8 +161,7 @@ export class TopBar extends React.Component {
显示虚拟组织 显示虚拟组织
</Checkbox> </Checkbox>
</Col> </Col>
</Row> <Col span={3}>
<div style={{ display: 'flex', maxWidth: '20%' }}>
<Button <Button
type="primary" type="primary"
style={{ marginRight: '10px' }} style={{ marginRight: '10px' }}
@ -175,7 +174,8 @@ export class TopBar extends React.Component {
<Dropdown overlay={this.menu}> <Dropdown overlay={this.menu}>
<Button>导出</Button> <Button>导出</Button>
</Dropdown> </Dropdown>
</div> </Col>
</Row>
</div> </div>
); );
} }

Loading…
Cancel
Save