当前位置:   article > 正文

ElementUi 表格组件二次封装_elementui不是有现成的组件吗,为什么还要自己封装组件

elementui不是有现成的组件吗,为什么还要自己封装组件

引言

后台管理系统中,大量用到了el-table,而且显示的内容不同,基本是从接口获取,如果每个界面都写el-table,容易造成难以维护的局面,因此二次封装了el-table组件

el-table二次封装的组件代码

<template>
  <div>
    <el-table :data="tableData" stripe border style="width: 100%">
      <template v-for="(item, index) in tableOptions">
        <el-table-column
          v-if="item.prop"
          :key="index"
          :prop="item.prop"
          :label="item.label"
          :width="item.width"
          :min-width="item.minWidth"
        ></el-table-column>
        <el-table-column
          v-else
          :key="index"
          :label="item.label"
          :width="item.width"
          :min-width="item.minWidth"
        >
          <template slot-scope="scope">
            <slot :name="item.slotName" :row="scope.row"></slot>
          </template>
        </el-table-column>
      </template>
    </el-table>
  </div>
</template>

<script>
export default {
  props: {
    // 表格数据
    tableData: {
      type: Array
    },
    // 表格配置
    tableOptions: {
      type: Array
    }
  }
};
</script>

<style lang="less" scoped>
</style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

属性详情

在这里插入图片描述在这里插入图片描述

父组件使用

//引入组件
import MyTable from '@/components/MyTable';

//注册
components: {
  MyTable
}

//表格数据
departmentData: [
  {
    company: {
      content: '公司介绍11',
      id: 1,
      nickname: 'dddd',
      phoneNumber: '11111111111'
    },
    companyId: 1,
    id: 1,
    index: 1,
    nickname: '全公司'
  },
  {
    company: {
      content: '公司介绍11',
      id: 2,
      nickname: 'dddd',
      phoneNumber: '11111111111'
    },
    companyId: 2,
    id: 2,
    index: 2,
    nickname: '全公司'
  }
],
      
// 表格配置
tableOptions: [
  // prop 字段名称根据接口返回处理的数据的列字段名称一致
  {
    prop: 'index',
    label: '序号',
    width: '80'
  },
  // 需要对列数据进行处理,不写prop字段,使用slotName字段
  {
    label: '公司名称',
    slotName: 'companyName'
  },
  {
     prop: 'nickname',
     label: '部门名称'
  },
  {
     label: '操作',
     slotName: 'operate',
     width: '150'
  }
]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
//在需要的位置使用
    <my-table :tableData="departmentData" :tableOptions="tableOptions">
      <!-- 公司名称 -->
      <template slot="companyName" slot-scope="scope">
        <span v-if="scope.row.company">
          {{ scope.row.company.nickname }}
        </span>
        <span v-else>{{ companyName }}</span>
      </template>
      <!-- 操作 -->
      <template slot="operate" slot-scope="scope">
        <el-button
          type="primary"
          size="small"
          @click="editDepartment(scope.row)"
          >修改</el-button
        >
        <el-button
          type="info"
          size="small"
          @click="delDepartment(scope.row)"
          >删除</el-button
        >
      </template>
    </my-table>   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25

结尾

通过二次封装,便可以减少每个界面直接使用el-table,便于维护,需要其余字段也方便直接在封装的组件中加入,而且二次封装的组件也方便在其余项目中使用

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/704436
推荐阅读
相关标签
  

闽ICP备14008679号