当前位置:   article > 正文

Element ui 修改table表格行高_element table设置行高

element table设置行高
  1. <el-table
  2. v-loading="dataListLoading"
  3. :data="dataList"
  4. style="width: 100%"
  5. ref="tables"
  6. class="tab"
  7. :row-style="iRowStyle"
  8. :cell-style="iCellStyle"
  9. :header-row-style="iHeaderRowStyle"
  10. border
  11. :header-cell-style="{
  12. background: 'rgba(194, 210, 255, 0.3)',
  13. color: '#040415',
  14. }"
  15. @selection-change="dataListSelectionChangeHandle"
  16. :row-key="getRowsKey"
  17. >

关键代码:

    :row-style="iRowStyle"

        :cell-style="iCellStyle"

        :header-row-style="iHeaderRowStyle"

  1. computed: {
  2. iRowStyle: function ({ row, rowIndex }) {
  3. return 'height:30px';
  4. },
  5. iHeaderRowStyle: function ({ row, rowIndex }) {
  6. return 'height:30px';
  7. },
  8. iCellStyle: function ({ row, column, rowIndex, columnIndex }) {
  9. return 'padding:0px'
  10. },
  11. },

效果:

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/80714
推荐阅读
相关标签
  

闽ICP备14008679号