解决Element UI表格 row-key ID 不唯一

  <el-table
        :data="data"
        border
        ref="xxx"
        :key="xxx"
        :height="height"
        :size="size"
        :row-key="rowKeyFunc"
        :tree-props="{children: 'taskDtoList', hasChildren: 'hasChildren'}"
    >
   el-table>
/*
* 父元素和子元素id有重复,子元素有个多余ID,就取多余ID,父元素没有多余ID就取id
*/
   rowKeyFunc(row) {
      if (row.idDi) {
        return row.idDi
      }
      return row.id
    },

摘自 :小白&小菜 的 文章 https://www.cnblogs.com/duanzhenzhen/p/12856289.html

你可能感兴趣的:(html5,javascript,vue)