import React, { Component } from 'react';
import { Row, Col, Button } from 'antd';
import styles from './index.less'
import Table from './Table'
class body extends Component {
constructor(props) {
super(props);
this.state = {
}
}
render() {
return(
<Row justify="center" type="flex" align="top">
<Col span={5}><img style={{width:272,height:168}} alt="" src="https://gw.alipayobjects.com/zos/rmsportal/mqaQswcyDLcXyDKnZfES.png" /></Col>
<Col span={10}><Table /></Col>
<Col span={5}>
<div className={styles.tebleButten}>
<Button className={styles.buttnn} icon="shopping-cart">充值</Button>
<Button className={styles.buttnn} icon="edit">增加竞价</Button>
<Button className={styles.buttnn} icon="fund">查看详情</Button>
</div>
</Col>
</Row>
)
}
}
export default body;
.tebleButten{
width: 150px;
height: 168px;
text-align: center;
}
:global {
.ant-col-18{
display: inline-flex;
flex-direction: row;
margin: 0;
.ant-col-5{
width: 271px;
}
.ant-table-body{
height: 167px;
}
}
}
.buttnn{
margin-top: 15px;
}

将
flex-grow
属性设为1试试另外"tebleButten"是不是不太对--"tableButton"