Table: fix wrapper width of fixed table (#10291)

pull/10304/head
杨奕 2018-03-22 11:40:36 +08:00 committed by GitHub
parent 259aeec369
commit d479ea9789
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -99,7 +99,7 @@
:border="border"
:store="store"
:style="{
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
width: bodyWidth
}"></table-header>
</div>
<div
@ -117,7 +117,7 @@
:row-class-name="rowClassName"
:row-style="rowStyle"
:style="{
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
width: bodyWidth
}">
</table-body>
<div
@ -139,7 +139,7 @@
:summary-method="summaryMethod"
:store="store"
:style="{
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
width: bodyWidth
}"></table-footer>
</div>
</div>
@ -162,7 +162,7 @@
:border="border"
:store="store"
:style="{
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
width: bodyWidth
}"></table-header>
</div>
<div
@ -180,7 +180,7 @@
:row-style="rowStyle"
:highlight="highlightCurrentRow"
:style="{
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
width: bodyWidth
}">
</table-body>
</div>
@ -196,7 +196,7 @@
:summary-method="summaryMethod"
:store="store"
:style="{
width: layout.bodyWidth ? layout.bodyWidth + 'px' : ''
width: bodyWidth
}"></table-footer>
</div>
</div>