如何将html的table空白单元格合并?数据是循环从数据库里面读取的。

发布于 2022-09-11 23:02:52 字数 491 浏览 13 评论 0

网页中的展示效果如图所示。
image.png
数据是从MongoDB里面读取的,在网页的展示方式是使用swig模板引擎,for循环遍历展示的。
伪代码如下:


<tbody>
for info in dbInfo
    <tr>
        <td>{info.cellValue}</td>
    </tr>
end for
</tbody>

请教,如何做到将空白的单元格合并成如图所示(其实就是将这组标题合并在一起):
image.png
使用比如layui或者bootstrap有方法吗?
求各位前辈指教。

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

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

发布评论

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

评论(2

歌枕肩 2022-09-18 23:02:52

将数据按照行 相同列属性进行分组

<template>
  <table border>
    <template v-for="(item) in afterList" >
      <tr v-for="(row, i) in item" >
          <td  v-if="i === 0" :rowspan="item.length">{{row.col1}}</td>
          <td  v-if="i === 0" :rowspan="item.length">{{row.col2}}</td>
          <td>{{row.col3}}</td>
      </tr>
    </template>
  </table>
</template>

<script>
export default {
  data() {
    return {
      list: [
        { col1: 'text1', col2: "info1", col3: 'xxx' },
        { col1: 'text1', col2: "info1", col3: 'xxx' },
        { col1: 'text1', col2: "info1", col3: 'xxx' },
        { col1: 'text1', col2: "info1", col3: 'xxx' },
        { col1: 'text2', col2: "info2", col3: 'xxx' },
        { col1: 'text2', col2: "info2", col3: 'xxx' },
        { col1: 'text2', col2: "info2", col3: 'xxx' },
        { col1: 'text3', col2: "info3", col3: 'xxx' },
        { col1: 'text3', col2: "info3", col3: 'xxx' },
        { col1: 'text3', col2: "info3", col3: 'xxx' },
        { col1: 'text3', col2: "info3", col3: 'xxx' },
      ],
      afterList: []
    }
  },
  methods: {
    // 数据转换
    tansList () {
      this.afterList = Object.values(this.list.reduce((temp, item) => {
        if( temp[item.col1] ) {
          temp[item.col1].push(item)
        }else {
          temp[item.col1]  = [item]
        }
        return temp
      },{}))

      console.log(this.afterList);
    }
  },
  mounted() {
    this.tansList()
  },
}
</script>

clipboard.png

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