el table嵌套table 子table 父table 索引
在 Element UI(也称为 el-table)中嵌套表格(Nested Table)时,可以使用作用域插槽(Scoped Slot)来访问父级表格的索引。
下面是一个示例,展示了如何在父表格和子表格中获取索引:
```html
<template>
  <el-table :data="parentData" :row-key="row => row.id">
    <el-table-column type="index" label="序号"></el-table-column>
    <el-table-column label="父表格列">
     
      <template slot-scope="scope">
        <el-table :data="w.childData" :row-key="row => row.id" border>
          <el-table-column type="index" label="子表序号"></el-table-column>
          <el-table-column label="子表格列"></el-table-column>
        </el-table>
      </template>
    </el-table-column>
  </el-table>
</template>
tabletable
```
在上面的示例中,我们在父表格的模板中使用了作用域插槽 `slot-scope="scope"`,然后通过 `w` 访问父表格的每一行数据。在子表格的模板中,同样可以通过 `w`
访问父表格的每一行数据。
可以通过 `type="index"` 在 `<el-table-column>` 中设置 `type` 属性为 `"index"`。
需要注意的是,父表格和子表格的数据应该定义在 Vue 实例中的 `data` 中,以便正确渲染嵌套表格。
这样,您就可以在嵌套的父表格和子表格中使用索引,并访问父表格的数据了。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。