解决方法1:超出部分用省略号显示 el-table是有这个控制属性的 :show-overflow-tooltip=“true”(超出一行显示省略号) <el-table-column prop="address"label="地址"show-overflow-tooltip/el-table-column> 存在问题:show-overflow-tooltip可以实现省略号,但是只能单行显示,不能换行。 解决方法2(推荐): 借助插槽和...
<el-table:data="tableData":max-height="'753'":tooltip-effect="'tooltipStyle'"><el-table-columnprop="replacereason"label="更改原因":show-overflow-tooltip="true"></el-table-column></el-table> .is-tooltipStyle{background:#fff;color:#3759af;border:1pxsolidrgb(158,157,157);font-size:15p...
el-table__cell > .cell { white-space: pre; // white-space: pre-wrap; // 也行。 } </style> 关于white-space不赘述,详情查询官方文档 总结 三种方式各有特色,但是render-header会略为耗费一点点性能。 若为固定表头数据,则优先推荐使用表头插槽方式,其次推荐换行符加css方式。 若为动态数据,则只能...
按照你的代码应该是可以换行的,因为el-table没有对这个做限制和处理,你这里不能换行应该是自己设置了什么东西,比如给表格单元格加了flex布局,可以通过控制台查看下,如果是的话,就把<div v-for="item in row.overPlans" ><div>换成<div><div v-for="item in row.overPlans" > ...
很多页面都需要用到表格组件el-table。如果没有给el-table-column指定宽度,默认情况下会平均分配给剩余的列。在列数比较多的情况,如果el-table,单元格里的内容就会换行。强制不换行,内容要么在单元格内滚动,要么就会溢出或被截断。 产品想要的效果是:内容保持单行显示,列间距保持一致,表格超出容器允许水平滚动。el-...
this.form = Object.assign({}, _data); }); }, }, }; </script> <style scoped> .el-table >>>.cell{ white-space:pre-line; } </style> 关键代码: <style scoped> .el-table >>>.cell{ white-space:pre-line; } 加上这个样式,这样换行符\n就会换行...
el-table 设置属性 render-header 代码 <template> <div> <el-table :data="tableData" style="width: 100%" height="250"> <el-table-column v-for="col of columns" :key="col.prop" :prop="col.prop" :label="col.label" align="center" header-align="center" ...
```css .el-table.el-table__body-wrapper.el-table__body tbody tr td{ white-space:normal;} ```这个样式规则会将表格中每个单元格的`white-space`属性设置为`normal`,这会允许文本自动换行。请注意,根据你的具体需求,你可能需要根据实际情况微调这些样式。此外,确保你的样式表能够正确覆盖Element Plus...
<el-table-columnprop="remark"label="备注"min-width="200"><templateslot-scope="scope"><template><spanclass="pre">{{ scope.row.remark }}</span></template></template></el-table-column> <style lang="scss" scoped> .pre{white-space:pre-wrap;word-wrap:break-word; ...