fix ivu-table-fixed bug

This commit is contained in:
huanghong 2018-03-21 15:24:31 +08:00
parent 8744e122ee
commit 95e1720ce3
4 changed files with 15 additions and 3 deletions

View file

@ -314,7 +314,7 @@
if (col.fixed && col.fixed === 'left') {
left.push(col);
} else {
other.push(col);
//other.push(col);
}
});
return left.concat(other);
@ -326,7 +326,7 @@
if (col.fixed && col.fixed === 'right') {
right.push(col);
} else {
other.push(col);
//other.push(col);
}
});
return right.concat(other);