西固网站建设平台西安网站seo服务
IOS浏览器不支持对element ui table的宽度设置百分比
IOS浏览器会把百分号识别成px,所以我们可以根据屏幕宽度将百分比转换成px
getColumnWidth(data) {const screenWidth = window.innerWidth;const desiredPercentage = data;const widthInPixels = (screenWidth * desiredPercentage) / 100;return widthInPixels + 'px';
},
<el-table-columntype="selection":style="{ 'width': getColumnWidth(3) }":width="getColumnWidth(3)":selectable="checkSelectable"v-if="hasAuth"
>
</el-table-column>