vue table切換元件
阿新 • • 發佈:2019-01-10
如果vue單頁開發沒有使用ui元件,table切換的功能還是比較煩人的。閒暇時間看書寫了一個table切換的元件,和大家分享一下,效果圖如下:
主要有兩個元件頁面,第一個是 tabs.vue,這個頁面上會迴圈出table標籤和每個標籤對應的內容,大部分的事件處理也在這個頁面上。程式碼如下:
<template> <div class="tabs"> <div class="tabs-bar"> <div v-for="(item, index) in navList" @click="handleChange(index)" :class="tabCls(item)"> {{item.label}} </div> </div> <div class="tabs-content"> <slot></slot> </div> </div> </template> <script> export default { name: "tabs", props: { value: { type: [String, Number] } }, data(){ return{ currentValue: this.value, navList: [] } }, methods: { tabCls: function (item) { return [ 'tabs-tab', { 'tabs-tab-active': item.name === this.currentValue } ] }, getTabs: function () { return this.$children.filter(function (item) { return item.$options.name === 'pane'; }) }, updateNav: function () { this.navList = []; let _this = this; this.getTabs().forEach(function (pane, index) { _this.navList.push({ label: pane.label, name: pane.name || index }); if(!pane.name){ pane.name = index; } if(index === 0){ if(!_this.currentValue){ _this.currentValue = pane.name || index; } } }); this.updateStatus(); }, updateStatus: function () { let tabs = this.getTabs(); let _this = this; tabs.forEach(function (tab) { return tab.show = tab.name === _this.currentValue; }) }, handleChange: function (index) { let nav = this.navList[index]; let name = nav.name; this.currentValue = name; this.$emit('input', name); this.$emit('on-click', name); } }, watch: { value: function (val) { this.currentValue = val; }, currentValue: function () { this.updateStatus(); } } } </script> <style scoped> </style>
第二個元件頁面是 pane.vue ,這個頁面主要是渲染和控制標籤所對應的內容。程式碼如下:
<template> <div class="pane" v-show="show"> <slot></slot> </div> </template> <script> export default { name: "pane", props:{ name:{ type: String }, label:{ type: String, default: '' } }, data(){ return { show: true } }, mounted(){ this.updateNav(); }, methods: { updateNav: function () { this.$parent.updateNav(); } }, watch: { label: function () { this.updateNav(); } } } </script> <style scoped> </style>
使用這兩個頁面就很簡單了,在頁面上引入這兩個元件,如下:
頁面上<tabs>標籤定義了一個初始值“activeKey”,這是頁面初始時顯示的內容,通常都是“1”,<pane>標籤有個兩個屬性,一個是label,一個是name,主要是控制table標籤主題的。每個table標籤對應的內容直接寫在<pane></pane>標籤裡面就好了。元件雖然複雜了點,但是複用起來還是可以的。<template> <div> <tabs v-model="activeKey"> <pane label="標籤一" name="1"> 標籤一的內容 </pane> <pane label="標籤二" name="2"> 標籤二的內容 </pane> <pane label="標籤三" name="3"> 標籤三的內容 </pane> </tabs> </div> </template> <script> import Tabs from "../components/table/tabs"; import Pane from "../components/table/pane"; export default { name: "tableIndex", components: {Tabs,Pane}, data(){ return { activeKey: '1' } } } </script> <style> .tabs{ font-size: 14px; color: #657180; } .tabs-bar:after{ content:''; display: block; width: 100%; height:1px; background: #d7dde4; margin-top:-1px; } .tabs-tab{ display: inline-block; padding: 4px 16px; margin-right: 6px; background: #fff; border: 1px solid #d7dde4; cursor: pointer; position: relative; } .tabs-tab-active{ color: #3399ff; border-top: 1px solid #3399ff; border-bottom: 1px solid #fff; } .tabs-tab-active:before{ content: ''; display: block; height: 1px; background: #3399ff; position: absolute; top: 0; left: 0; right: 0; } .tabs-content{ padding: 8px 0; } </style>
頁面的樣式我是寫在全局裡面的(最後一個引入元件的頁面),沒有寫在元件頁面裡面,使用的時候請多多注意