Commit fd6a95b8 authored by 杨南鸿's avatar 杨南鸿

修复下拉展开会出现浮动td都有内容的问题

parent b86255c3
import ElCheckbox from 'element-ui/packages/checkbox';
export default {
name: 'ElTableRow',
props: [
......@@ -20,6 +21,9 @@ export default {
'handleCellMouseEnter',
'fixed'
],
components: {
ElCheckbox
},
render() {
const {
columns,
......@@ -39,9 +43,6 @@ export default {
<tr>
{
columns.map((column, cellIndex) => {
if (columnsHidden[cellIndex] && this.fixed) {
return null;
}
const { rowspan, colspan } = this.getSpan(row, column, $index, cellIndex);
if (!rowspan || !colspan) {
return null;
......
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