静Yu 2023-03-25 17:40 采纳率: 0%
浏览 35

vue element admin表格行高设置

img

img


礼貌发问:vue-element-admin 开源项目中,Excel下的Export Excel页面中的表格行高该如何修改。

 <el-table v-loading="listLoading" :data="list" element-loading-text="Loading..." border fit highlight-current-row>
      <el-table-column align="center" label="Id" width="95">
        <template slot-scope="scope">
          {{ scope.$index }}
        </template>
      </el-table-column>
      <el-table-column label="Title">
        <template slot-scope="scope">
          {{ scope.row.title }}
        </template>
      </el-table-column>
      <el-table-column label="Author" width="110" align="center">
        <template slot-scope="scope">
          <el-tag>{{ scope.row.author }}</el-tag>
        </template>
      </el-table-column>
      <el-table-column label="Readings" width="115" align="center">
        <template slot-scope="scope">
          {{ scope.row.pageviews }}
        </template>
      </el-table-column>
      <el-table-column align="center" label="Date" width="220">
        <template slot-scope="scope">
          <i class="el-icon-time" />
          <span>{{ scope.row.timestamp | parseTime('{y}-{m}-{d} {h}:{i}') }}</span>
        </template>
      </el-table-column>
    </el-table>
  • 写回答

2条回答 默认 最新

  • 流比 2023-03-25 19:01
    关注

    假设您想将表格行高设置为 50px,请按照以下步骤操作:

    在项目的 CSS 文件(例如,src/assets/css/style.scss 或 src/assets/css/style.css)中添加以下样式:

    .custom-row-height .el-table__row {
      height: 50px;
      line-height: 50px;
    }
    

    然后,在您的表格组件中添加刚刚定义的自定义样式类 custom-row-height:

    <el-table
      v-loading="listLoading"
      :data="list"
      element-loading-text="Loading..."
      border
      fit
      highlight-current-row
      class="custom-row-height"
    >
      <!-- ... 其他代码 ... -->
    </el-table>
    
    评论 编辑记录

报告相同问题?

问题事件

  • 创建了问题 3月25日

悬赏问题

  • ¥15 onlyoffice编辑完后立即下载,下载的不是最新编辑的文档
  • ¥15 求caverdock使用教程
  • ¥15 Coze智能助手搭建过程中的问题请教
  • ¥15 12864只亮屏 不显示汉字
  • ¥20 三极管1000倍放大电路
  • ¥15 vscode报错如何解决
  • ¥15 前端vue CryptoJS Aes CBC加密后端java解密
  • ¥15 python随机森林对两个excel表格读取,shap报错
  • ¥15 基于STM32心率血氧监测(OLED显示)相关代码运行成功后烧录成功OLED显示屏不显示的原因是什么
  • ¥100 X轴为分离变量(因子变量),如何控制X轴每个分类变量的长度。