提交 c7c0a7e4 作者: 无木

fix(table): fix index column style

修复序号列的样式问题
上级 05329ce9
......@@ -3,7 +3,11 @@ import { BasicArrow } from '/@/components/Basic';
export default () => {
return (props: Recordable) => {
if (!props.expandable) {
return <span class="ant-table-row-expand-icon ant-table-row-spaced" />;
if (props.expanded) {
return <span class="ant-table-row-expand-icon ant-table-row-spaced" />;
} else {
return <span />;
}
}
return (
<BasicArrow
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论