Newer
Older
dcms_front / src / views / otherComment / sourceStatis / sourceStatisList.vue
<template>
  <div class="table-container">
    <el-row class="table-title">
      <el-col :span="6"><div class="title-header"><i class="el-icon-menu"/>数据列表</div></el-col>
    </el-row>
    <el-table ref="table" :data="list" class="table" border>
      <el-table-column align="center" label="序号" type="index" width="80"/>
      <el-table-column align="center" label="问题来源" prop="sourceName"/>
      <el-table-column align="center" label="上报数" prop="upNum"/>
      <el-table-column align="center" label="事件数" prop="eventNum"/>
      <el-table-column align="center" label="部件数" prop="partNum"/>
    </el-table>
  </div>

</template>

<script>
export default {
  name: 'SourceStatis',
  props: {
    list: {
      type: Array,
      default() {
        return []
      }
    }
  }
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
  $tableTitleHeight:46px;
  .table{
    margin-bottom: 20px;
  }
  .table-title{
    background-color:rgba(243, 243, 243, 1);
    height: $tableTitleHeight;
    .title-header{
      line-height:$tableTitleHeight;
      color: #606266;
      font-size: 15px;
      i{
        margin-left: 5px;
        margin-right: 5px;
      }
    }
  }
</style>