vue封裝element中table元件
阿新 • • 發佈:2018-10-31
後臺系統,table被用的次數比較多,所以決定提出來作為元件
1.新建一個Table.vue檔案
<!--region 封裝的分頁 table--> <template> <div class="table"> <el-table id="iTable" v-loading.iTable="options.loading" :data="list" :stripe="options.stripe" ref="mutipleTable" @selection-change="handleSelectionChange"> <!--region 選擇框--> <el-table-column v-if="options.mutiSelect" type="selection" style="width: 55px;"> </el-table-column> <!--endregion--> <!--region 資料列--> <template v-for="(column, index) in columns"> <el-table-column :prop="column.prop" :key='column.label' :label="column.label" :align="column.align" :width="column.width"> <template slot-scope="scope"> <template v-if="!column.render"> <template v-if="column.formatter"> <span v-html="column.formatter(scope.row, column)"></span> </template> <template v-else> <span>{{scope.row[column.prop]}}</span> </template> </template> <template v-else> <expand-dom :column="column" :row="scope.row" :render="column.render" :index="index"></expand-dom> </template> </template> </el-table-column> </template> <!--endregion--> <!--region 按鈕操作組--> <el-table-column ref="fixedColumn" label="操作" align="center" :width="operates.width" :fixed="operates.fixed" v-if="operates.list.filter(_x=>_x.show === true).length > 0"> <template slot-scope="scope"> <div class="operate-group"> <template v-for="(btn, key) in operates.list"> <div class="item" v-if="btn.show" :key='btn.id'> <el-button :type="btn.type" size="mini" :icon="btn.icon" :disabled="btn.disabled" :plain="btn.plain" @click.native.prevent="btn.method(key,scope.row)">{{ btn.label }} </el-button> </div> </template> </div> </template> </el-table-column> <!--endregion--> </el-table> </div> </template> <!--endregion--> <script> export default { props: { list: { type: Array, default: [] }, // 資料列表 columns: { type: Array, default: [] }, // 需要展示的列 === prop:列資料對應的屬性,label:列名,align:對齊方式,width:列寬 operates: {}, // 操作按鈕組 === label: 文字,type :型別(primary / success / warning / danger / info / text),show:是否顯示,icon:按鈕圖示,plain:是否樸素按鈕,disabled:是否禁用,method:回撥方法 options: { type: Object, default: { stripe: false, // 是否為斑馬紋 table highlightCurrentRow: false // 是否要高亮當前行 }, } // table 表格的控制引數 }, //元件 components: { expandDom: { functional: true, props: { row: Object, render: Function, index: Number, column: { type: Object, default: null } }, render: (h, ctx) => { const params = { row: ctx.props.row, index: ctx.props.index } if (ctx.props.column) params.column = ctx.props.column return ctx.props.render(h, params) } } }, // 資料 data () { return { pageIndex: 1, multipleSelection: [] // 多行選中 } }, mounted () { }, computed: { }, methods: { // 多行選中 handleSelectionChange (val) { this.multipleSelection = val this.$emit('handleSelectionChange', val) }, // 顯示 表格操作彈窗 showActionTableDialog () { console.log(4444) this.$emit('handelAction') } } } </script> <style lang="scss" > </style>
2.呼叫元件
<template> <div class="table-page"> <i-table :list="list" @handleSelectionChange="handleSelectionChange" :options="options" :columns="columns" :operates="operates" > </i-table> </div> </template> <script> import iTable from '../components/Table' export default { components: {iTable}, data () { return { list: [ { id: '24', title: '編號3', state:0 }, { id: '23', title: '編號3', state:1 }, { id: '23', title: '編號3', state:2 }, { id: '2', title: '編號3', state:0 }, { id: '223', title: '編號3', state:1 }, { id: '2444', title: '編號3', state:1 }, ], // table資料 options: { stripe: true, // 是否為斑馬紋 table loading: false, // 是否新增表格loading載入動畫 highlightCurrentRow: true, // 是否支援當前行高亮顯示 mutiSelect: true, // 是否支援列表項選中功能 }, // table 的引數 columns: [ { prop: 'id', label: '編號', align: 'center', }, { prop: 'title', label: '標題', align: 'center', formatter: (row, column, cellValue) => { return `<span style="white-space: nowrap;color: dodgerblue;">${row.title}</span>` } }, { prop: 'state', label: '狀態', align: 'center', render: (h, params) => { return h('el-tag', { props: {type: params.row.state === 0 ? 'success' : params.row.state === 1 ? 'info' : 'danger'} // 元件的props }, params.row.state === 0 ? '上架' : params.row.state === 1 ? '下架' : '稽核中') } }, ], // 需要展示的列 operates: { width: 200, fixed: 'right', list: [ { id:'1', label: '編輯', type: 'warning', show: true, icon: 'el-icon-edit', plain: true, disabled: false, method: (index, row) => { this.handleEdit(index, row) } }, { id:'2', label: '刪除', type: 'danger', icon: 'el-icon-delete', show: true, plain: false, disabled: false, method: (index, row) => { this.handleDel(index, row) } } ] } // 列操作按鈕 } }, methods: { // 選中行 handleSelectionChange (val) { console.log('val:', val) }, // 編輯 handleEdit (index, row) { console.log(' index:', index) console.log(' row:', row) }, // 刪除 handleDel (index, row) { console.log(' index:', index) console.log(' row:', row) } } } </script>