使用Modal嵌套Table后,弹窗里面分页显示不下,需要向上滑动
解决:
html
<Modal
v-model:open="openView"
title="查看"
width="60%"
:bodyStyle="{ height: '600px', maxHeight: '440px', overflowY: 'auto' }"
:destroy-on-close="true"
@cancel="openView = false"
>
<Table
:data-source="viewData"
:columns="!isDelay ? viewColumns : viewColumns2"
row-key="stationCode"
:pagination="{ pageSize: 10 }"
:style="{ height: '380px' }"
></Table>