Commit e39fa8cf authored by 李腾's avatar 李腾

fix: 修复订单列表表格内容过长导致宽度失效的问题

parent d596732b
......@@ -62,7 +62,7 @@ const CustomTable = props => {
};
return (
<td rowSpan={rowSpan} key={key} align={itemAlign || align}>
{render ? render(renderParams) : currentData}
<div className={style['td-box']}>{render ? render(renderParams) : currentData}</div>
</td>
);
});
......
......@@ -17,6 +17,9 @@
.custom-table-tbody {
> tr > td {
padding: 16px 16px;
> .td-box {
word-break: break-all;
}
&.thead-render {
padding: 0;
}
......
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