码迷,mamicode.com
首页 > 其他好文 > 详细

elementUI table二次封装

时间:2019-09-09 22:34:02      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:ali   temp   key   通过   index   export   email   htm   gis   

1.HTML

<template>
  <el-table
      ref="table"
      element-loading-text="Loading"
      :data="tableData"
      border 
      tooltip-effect="dark"
      style="width:100%">
      <el-table-column v-for="(item,index) in tableLabel" :width="item.width ? item.width : ‘‘" :key="index" :align="item.align" :label="item.label" :prop="item.param" :sortable="item.sortable ? ‘custom‘ : false">
        <template slot-scope="scope">
          <span v-if="item.render">
            {{item.render(scope.row)}}
          </span>
          <span v-else>{{scope.row[item.param]}}</span>
        </template>
      </el-table-column>
      <el-table-column v-if="tableOption.label" :width="tableOption.width" :label="tableOption.label" align="center" class-name="small-padding fixed-width">
        <template slot-scope="scope">
          <el-button  v-for="(item,index) in tableOption.options" :key="index" :type="item.type" :icon="item.icon" @click="handleButton(item.methods,scope.row,scope.row)" size="mini">
            {{item.label}}
          </el-button>
        </template>
      </el-table-column>
    </el-table>
</template>

  2.子组件中js

<script>
export default {
  props:{
    tableData:{
      type:Array,
      default: () => {
        return []
      }
    },
    tableLabel:{
      type:Array,
      default: () => {
        return []
      }
    },
    tableOption:{
      type:Object,
      default: () => {
        return {}
      }
    }
  },
  components:{},
  methods: {

  }
}
</script>

  3.父组件调用

<table-cmp
      :table-data="tableData"
      :table-label="tableLabel"
      :table-option="tableOption"
    ></table-cmp>

  4.父组件js

tableData:[],
tableLabel: [
        { label: ‘用户名‘, param: ‘usr‘, align: ‘center‘,sortable:true },
        { label: ‘公司名称‘, param: ‘company‘, align: ‘center‘ },
        { label: ‘办公邮箱‘, param: ‘email‘, align: ‘center‘,width:‘200‘ },
        { label: ‘注册时间‘, param: ‘registTime‘, align: ‘center‘,sortable:true },
        { label: ‘审核状态‘, param: ‘status‘, align: ‘center‘,sortable:true, render:  (row) => {
            if (row.status === 0) {
              return ‘未审核‘
            } else if (row.status === 1) {
              return ‘审核通过‘
            } else if(row.status ===2) {
              return ‘审核不通过‘
            } else {
              return ‘禁用‘
            }
          }        
        }
      ],
      tableOption: {
        label: ‘操作‘,
        width: ‘200‘,
        options: [
          { label: ‘预览‘, type: ‘primary‘, icon: ‘el-icon-view‘, methods: ‘preview‘ },
          { label: ‘审核‘, type: ‘primary‘, icon: ‘el-icon-upload2‘, methods: ‘audit‘ },
        ]
      }

  二次封装,将所有的信息动态生成。

 

elementUI table二次封装

标签:ali   temp   key   通过   index   export   email   htm   gis   

原文地址:https://www.cnblogs.com/dyy-dida/p/11494524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!