Card 卡片

将信息聚合在卡片容器中展示。

基础用法

包含标题,内容和操作。

Card 卡片 - 图1

Card 组件包括headerbody部分,header部分需要有显式具名 slot 分发,同时也是可选的。

  1. <el-card class="box-card">
  2. <div slot="header" class="clearfix">
  3. <span>卡片名称</span>
  4. <el-button style="float: right; padding: 3px 0" type="text">操作按钮</el-button>
  5. </div>
  6. <div v-for="o in 4" :key="o" class="text item">
  7. {{'列表内容 ' + o }}
  8. </div>
  9. </el-card>
  10. <style>
  11. .text {
  12. font-size: 14px;
  13. }
  14. .item {
  15. margin-bottom: 18px;
  16. }
  17. .clearfix:before,
  18. .clearfix:after {
  19. display: table;
  20. content: "";
  21. }
  22. .clearfix:after {
  23. clear: both
  24. }
  25. .box-card {
  26. width: 480px;
  27. }
  28. </style>

简单卡片

卡片可以只有内容区域。

Card 卡片 - 图2

<el-card class="box-card">
  <div v-for="o in 4" :key="o" class="text item">
    {{'列表内容 ' + o }}
  </div>
</el-card>

<style>
  .text {
    font-size: 14px;
  }

  .item {
    padding: 18px 0;
  }

  .box-card {
    width: 480px;
  }
</style>

带图片

可配置定义更丰富的内容展示。

Card 卡片 - 图3

配置body-style属性来自定义body部分的style,我们还使用了布局组件。

<el-row>
  <el-col :span="8" v-for="(o, index) in 2" :key="o" :offset="index > 0 ? 2 : 0">
    <el-card :body-style="{ padding: '0px' }">
      <img src="https://shadow.elemecdn.com/app/element/hamburger.9cf7b091-55e9-11e9-a976-7f4d0b07eef6.png" class="image">
      <div style="padding: 14px;">
        <span>好吃的汉堡</span>
        <div class="bottom clearfix">
          <time class="time">{{ currentDate }}</time>
          <el-button type="text" class="button">操作按钮</el-button>
        </div>
      </div>
    </el-card>
  </el-col>
</el-row>

<style>
  .time {
    font-size: 13px;
    color: #999;
  }

  .bottom {
    margin-top: 13px;
    line-height: 12px;
  }

  .button {
    padding: 0;
    float: right;
  }

  .image {
    width: 100%;
    display: block;
  }

  .clearfix:before,
  .clearfix:after {
      display: table;
      content: "";
  }

  .clearfix:after {
      clear: both
  }
</style>

<script>
export default {
  data() {
    return {
      currentDate: new Date()
    };
  }
}
</script>

卡片阴影

可对阴影的显示进行配置。

Card 卡片 - 图4

通过shadow属性设置卡片阴影出现的时机:alwayshovernever

<el-row :gutter="12">
  <el-col :span="8">
    <el-card shadow="always">
      总是显示
    </el-card>
  </el-col>
  <el-col :span="8">
    <el-card shadow="hover">
      鼠标悬浮时显示
    </el-card>
  </el-col>
  <el-col :span="8">
    <el-card shadow="never">
      从不显示
    </el-card>
  </el-col>
</el-row>

Attributes

参数说明类型可选值默认值
header设置 header,也可以通过 slot#header 传入 DOMstring
body-style设置 body 的样式object{ padding: '20px' }
shadow设置阴影显示时机stringalways / hover / neveralways