如下:设置 :row-config="{ isHover: true, height: 30 }" ,表格行高无变化:
<vxe-table ref="zQuoSale" :data="zQuoSaleList" border size="mini" height="345"
:row-config="{ isHover: true, height: 30 }"
:column-config="{ resizable: true }" :footer-method="sumSale"
show-footer :scroll-y="{ enabled: true, gt: 10 }"
:edit-config="{ trigger: 'click', mode: 'cell' }" stripe>
解决方法:
在表格参数中增加: show-overflow,最终结果如下:
<vxe-table ref="zQuoSale" :data="zQuoSaleList" border size="mini" height="345"
:row-config="{ isHover: true, height: 30 }"
:column-config="{ resizable: true }" :footer-method="sumSale"
show-footer show-overflow :scroll-y="{ enabled: true, gt: 10 }"
:edit-config="{ trigger: 'click', mode: 'cell' }" stripe>