elementui 第三级级表头 表头循环时未按照顺序循环

发布于 2022-09-11 15:47:51 字数 2427 浏览 17 评论 0

elementui 多级表头 表头循环时未按照顺序循环
后台api给出来的表头顺序是 BCD 然后第二层表头是按照顺序循环的,但是第三层表头,循环时,就没有按照顺序循环
clipboard.png
tableHeader 组件:

    <el-table
            :data="tableData"
            :span-method="objectSpanMethod"
            style="width: 100%;height: 600px" border>
        <el-table-column v-for="header in tableHeaderChildData" show-overflow-tooltip :key="header.id"
                         :label="header.label" :prop="header.prop" align="center">
            <el-table-column v-for="i in header.children" :key="i.id" show-overflow-tooltip :label="i.label"
                             :prop="i.prop" align="center">
                <TableColumn v-bind:tableHeaderChildData="i.children"></TableColumn>
            </el-table-column>
        </el-table-column>
    </el-table>
    
    

TableColumn 组件 :

            <el-table-column v-for="header in tableHeaderChildData" show-overflow-tooltip :key="header.id"
                     :label="header.label" :prop="header.prop" align="center">
        <el-table-column v-for="i in header.children" :key="i.id" show-overflow-tooltip :label="i.label"
                         :prop="i.prop" align="center">
            <table-header v-bind:tableHeaderChildData="i.children"></table-header>
        </el-table-column>
    </el-table-column>
    

我发现如果我在一个组件里面写三个循环,是可以正确排序的

        <el-table-column v-for="header in tableHeaderChildData" show-overflow-tooltip :key="header.id"
                         :label="header.label" :prop="header.prop" align="center">
            <el-table-column v-for="i in header.children" :key="i.id" show-overflow-tooltip :label="i.label"
                             :prop="i.prop" align="center">

                <el-table-column v-for="y in i.children" :key="y.id" show-overflow-tooltip :label="y.label"
                                 :prop="y.prop" align="center">
                    <!--<TableColumn v-bind:tableHeaderChildData="i.children"></TableColumn>-->
                </el-table-column>
            </el-table-column>
        </el-table-column>

但是因为目前不能确定表头的层级,所以还不能写死

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟花肆意 2022-09-18 15:47:51

可以看看这个,无可无限级表头嵌套https://blog.csdn.net/liub37/...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文