提交 e28cc621 authored 作者: 姚鑫国's avatar 姚鑫国

【单元格样式修改】跟cwidth新增单位

上级 1b9b686a
......@@ -879,16 +879,13 @@ export default class ZdyTable extends Component {
console.log(`第${i}行第${j}列样式配置有误,${e}`);
}
}
let cwidth = cell.content != null && cell.content.cwidth != null ? cell.content.cwidth : width;
return (!allhidden && cell.hidden) || cell.content.isNoRender ? (
''
) : (
<td
width={
i == 0
? (cell.content != null && cell.content.cwidth != null
? cell.content.cwidth
: width) * (cell.col ? cell.col : 1)
: width * (cell.col ? cell.col : 1)
isNaN(Number(cwidth)) ? cwidth : cwidth * (cell.col ? cell.col : 1)
}
rowSpan={cell.row}
colSpan={cell.col}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论