一、错误复现
效果复现

代码复现
<el-table-column prop="attachmentUrl" label="凭证" align="center" min-width="120">
<template #default="scope">
<el-image
style="width: 60px; height: 60px;"
:src="scope.row.attachmentUrl"
:max-scale="7"
:min-scale="0.2"
:preview-src-list="[scope.row.attachmentUrl]"
fit="cover"
/>
</template>
</el-table-column>
二、解决方案
方案描述
- 查看element-plus官网
el-image
文档preview-teleported
属性

- 通过开启
preview-teleported
属性将el-image
插入至body,不受父元素变化影响。
代码
<el-table-column prop="attachmentUrl" label="凭证" align="center" min-width="120">
<template #default="scope">
<el-image
style="width: 60px; height: 60px;"
:src="scope.row.attachmentUrl"
:max-scale="7"
:min-scale="0.2"
preview-teleported
:preview-src-list="[scope.row.attachmentUrl]"
fit="cover"
/>
</template>
</el-table-column>