From 9f09bd3b57c60947ccba78ec226d10626a03421f Mon Sep 17 00:00:00 2001 From: FuryBean Date: Tue, 13 Mar 2018 10:36:15 +0800 Subject: [PATCH] Table: fix fixed column style on safari (#10130) --- packages/table/src/table.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/table/src/table.vue b/packages/table/src/table.vue index 505132590..024d7e70f 100644 --- a/packages/table/src/table.vue +++ b/packages/table/src/table.vue @@ -99,7 +99,7 @@ :border="border" :store="store" :style="{ - width: layout.fixedWidth ? layout.fixedWidth + 'px' : '' + width: layout.bodyWidth ? layout.bodyWidth + 'px' : '' }">
@@ -162,7 +162,7 @@ :border="border" :store="store" :style="{ - width: layout.rightFixedWidth ? layout.rightFixedWidth + 'px' : '' + width: layout.bodyWidth ? layout.bodyWidth + 'px' : '' }">
@@ -196,7 +196,7 @@ :summary-method="summaryMethod" :store="store" :style="{ - width: layout.rightFixedWidth ? layout.rightFixedWidth + 'px' : '' + width: layout.bodyWidth ? layout.bodyWidth + 'px' : '' }">