vue项目实现table表格竖向

先上图

思路:使用element ui 自带的栅格,通过控制el-col 的span 属性来设置每行展示多少行(竖着的字段),超过就自动换行;

content1 是表头

content2是返回的数据

getTable()函数是将返回的正常数据进行处理,和表格字段相对应

表格样式在代码中有注释

代码:

复制代码
<template>
  <div>
    <el-drawer
      title="对比"
      :visible.sync="drawer"
      :direction="direction"
      :before-close="handleClose"
      size="1000px"
    >
      <div style="margin:31px;">
        <div style="height:408px;overflow-x: auto;overflow-y: hidden;">
          <el-col :span="howWidth" v-for="(item, index) in columns" :key="index">
            <div class="box">
              <div class="content1">
                <div style="width:130px">{{ item.label }}</div>
              </div>
              <div v-for="(itC,itN) in item.value" :key="itN" class="content2">
                <div
                  :title=" itC.length > 8 ?itC:''"
                >{{ itC.length > 8 ? itC.slice(0,8)+'...' : itC }}</div>
              </div>
            </div>
          </el-col>
        </div>
      </div>
    </el-drawer>
  </div>
</template>
<script>
export default {
  data() {
    return {
      drawer: false,
      direction: "rtl",
      howWidth: 13,
      columns: [
        {
          prop: "gunName",
          label: "电枪名称",
          width: "200"
        },
        {
          prop: "gunMeter",
          label: "电表当前读数",
          width: "200"
        },
        {
          prop: "gunOutVolt",
          label: "电表输出电压",
          width: "200"
        },
        {
          prop: "gunOutElec",
          label: "电表输出电流",
          width: "200"
        },
        {
          prop: "gunCharged",
          label: "已充电量",
          width: "200"
        },
        {
          prop: "gunNeedVolt",
          label: "需求电压",
          width: "200"
        },
        {
          prop: "gunNeedElec",
          label: "需求电流",
          width: "200"
        },
        {
          prop: "gunSurveyVolt",
          label: "测量电压",
          width: "200"
        },
        {
          prop: "gunBtrVolt",
          label: "电池电压",
          width: "200"
        },
        {
          prop: "gunBtrElec",
          label: "电池电流",
          width: "200"
        }
      ]
    };
  },
  methods: {
    open() {
      this.drawer = true;
      this.getTable();
    },
    getTable() {
      let tableData = [
        {
          gunName: "1",
          gunMeter: "枪号",
          gunOutVolt: "bb",
          gunOutElec: "tt",
          gunCharged: "xxxx",
          gunNeedVolt: "cccc",
          gunNeedElec: "111111111111111111111",
          gunSurveyVolt: "1111111",
          gunBtrVolt: "1111111",
          gunBtrElec: "1111111"
        },
        {
          gunName: "2",
          gunMeter: "枪号",
          gunOutVolt: "bb",
          gunOutElec: "tt",
          gunCharged: "xxxx",
          gunNeedVolt: "cccc",
          gunNeedElec: "1111111",
          gunSurveyVolt: "1111111",
          gunBtrVolt: "1111111",
          gunBtrElec: "1111111"
        },
        {
          gunName: "3",
          gunMeter: "枪号",
          gunOutVolt: "bb",
          gunOutElec: "tt",
          gunCharged: "xxxx",
          gunNeedVolt: "cccc",
          gunNeedElec: "1111111",
          gunSurveyVolt: "1111111",
          gunBtrVolt: "1111111",
          gunBtrElec: "1111111"
        },
        {
          gunName: "4",
          gunMeter: "枪号",
          gunOutVolt: "bb",
          gunOutElec: "tt",
          gunCharged: "xxxx",
          gunNeedVolt: "cccc",
          gunNeedElec: "1111111",
          gunSurveyVolt: "1111111",
          gunBtrVolt: "1111111",
          gunBtrElec: "1111111"
        },
        {
          gunName: "5",
          gunMeter: "枪号",
          gunOutVolt: "bb",
          gunOutElec: "tt",
          gunCharged: "xxxx",
          gunNeedVolt: "cccc",
          gunNeedElec: "1111111",
          gunSurveyVolt: "1111111",
          gunBtrVolt: "1111111",
          gunBtrElec: "1111111"
        },
        {
          gunName: "6",
          gunMeter: "枪号",
          gunOutVolt: "bb",
          gunOutElec: "tt",
          gunCharged: "xxxx",
          gunNeedVolt: "cccc",
          gunNeedElec: "1111111",
          gunSurveyVolt: "1111111",
          gunBtrVolt: "1111111",
          gunBtrElec: "1111111"
        },
        {
          gunName: "7",
          gunMeter: "枪号",
          gunOutVolt: "bb",
          gunOutElec: "tt",
          gunCharged: "xxxx",
          gunNeedVolt: "cccc",
          gunNeedElec: "1111111",
          gunSurveyVolt: "1111111",
          gunBtrVolt: "1111111",
          gunBtrElec: "1111111"
        },
        {
          gunName: "8",
          gunMeter: "枪号",
          gunOutVolt: "bb",
          gunOutElec: "tt",
          gunCharged: "xxxx",
          gunNeedVolt: "cccc",
          gunNeedElec: "1111111",
          gunSurveyVolt: "1111111",
          gunBtrVolt: "1111111",
          gunBtrElec: "1111111"
        },
        {
          gunName: "9",
          gunMeter: "枪号",
          gunOutVolt: "bb",
          gunOutElec: "tt",
          gunCharged: "xxxx",
          gunNeedVolt: "cccc",
          gunNeedElec: "1111111",
          gunSurveyVolt: "1111111",
          gunBtrVolt: "1111111",
          gunBtrElec: "1111111"
        },
        {
          gunName: "10",
          gunMeter: "枪号",
          gunOutVolt: "bb",
          gunOutElec: "tt",
          gunCharged: "xxxx",
          gunNeedVolt: "cccc",
          gunNeedElec: "1111111",
          gunSurveyVolt: "1111111",
          gunBtrVolt: "1111111",
          gunBtrElec: "1111111"
        }
      ];
      this.columns.forEach(item => {
        item.value = [];
        for (let i in tableData) {
          for (let j in tableData[i]) {
            console.log("j", j);
            if (item.prop == j) {
              item.value.push(tableData[i][j]);
            }
          }
        }
      });

      console.log("this.columns[item]", this.columns);
    },
    handleClose() {
      this.drawer = false;
    }
  }
};
</script>
<style lang="less" scoped>
.box {
  width: 100%;
  height: 40px;
  display: flex;
  .content1 {
    width: 130px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #e7f2fd;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    border-left: 1px solid #409eff;
    color: #252525;
    font-size: 14px;
    font-weight: 700;
    position: absolute;  //表头固定
  }
  .content2:nth-child(odd) {  //对奇数列样式进行设置
    min-width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #f4f8fc;
    color: #666666;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    font-size: 14px;
  }
  .content2:nth-child(2) {
    margin-left: 130px !important; //表头固定后,数据内容的第一列需要设置左边距空出表头的宽度
  }
  .content2:nth-child(even) {  //对偶数列样式进行设置
    min-width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    color: #666666;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    font-size: 14px;
  }
}
</style>
相关推荐
Csvn8 小时前
OpenSpec 详细使用教程
前端
之歆9 小时前
Day19_LESS 完全指南——从入门到工程实践
前端·css·less
云水一下10 小时前
HTML5 从入门到精通:实战收官——从零搭建完整静态网站,综合运用所有知识
前端·html5
不总是10 小时前
Windows 系统 Node.js 免安装版(zip)安装与配置教程(2026 最新)
前端·windows·node.js
冬奇Lab10 小时前
每日一个开源项目(第105篇):Twenty - 跳出 Salesforce 的圈套,定义现代开源 CRM
前端·后端·开源
zhangyao94033011 小时前
开发pc端时,表格的高度怎么设置才能铺满页面
前端·javascript·elementui
XinZong11 小时前
实测OpenClaw虾淘:全民工具AI时代,冷门非工具类的Skill还能出圈吗?
javascript
kjs--11 小时前
浏览器书签执行脚本
前端
烛衔溟11 小时前
TypeScript 类的类型 —— 作为类型使用
javascript·ubuntu·typescript
之歆11 小时前
Day16_JavaScript 轮播图与事件工程实战(下篇)
服务器·开发语言·前端·javascript·网络·性能优化