This commit is contained in:
梁灏 2017-04-10 09:58:51 +08:00
parent b164f7c05c
commit 67c9b1c8b9
6 changed files with 87 additions and 44 deletions

View file

@ -1,13 +1,14 @@
<template>
<Table :columns="columns1" :data="data1">
<div slot="header">头部</div>
<div slot="footer">底部</div>
</Table>
<div>
<Table :height="height" border :columns="columns1" :data="data2"></Table>
<Button @click="height=800">change height</Button>
</div>
</template>
<script>
export default {
data () {
return {
height: 200,
columns1: [
{
title: '姓名',
@ -22,7 +23,27 @@
key: 'address'
}
],
data1: [
data2: [
{
name: '王小明',
age: 18,
address: '北京市朝阳区芍药居'
},
{
name: '张小刚',
age: 25,
address: '北京市海淀区西二旗'
},
{
name: '李小红',
age: 30,
address: '上海市浦东新区世纪大道'
},
{
name: '周小伟',
age: 26,
address: '深圳市南山区深南大道'
},
{
name: '王小明',
age: 18,

View file

@ -1,42 +1,56 @@
<template>
<Row>
<Col :span="12">
<Tabs type="card" closable @on-tab-remove="handleTagRemove">
<Tab-pane label="标签一" v-if="tab0">标签一的内容</Tab-pane>
<Tab-pane label="标签二" v-if="tab1">标签二的内容</Tab-pane>
<Tab-pane label="标签三" v-if="tab2">标签三的内容</Tab-pane>
</Tabs>
</Col>
<Col :span="12">
<Tabs type="card" closable @on-tab-remove="handleTagRemove">
<Tab-pane :label="tab.label" v-for="tab of tabs" :key="tab">{{tab.content}}</Tab-pane>
<Button size="small" slot="extra" @click="addTab">添加</Button>
</Tabs>
</Col>
</Row>
<Tabs value="name1" :animated="false">
<Tab-pane label="标签一" name="name1">
<Table :columns="columns1" :data="data1"></Table>
</Tab-pane>
<Tab-pane label="标签二" name="name2">
<Table :columns="columns1" :data="data1"></Table>
</Tab-pane>
<Tab-pane label="标签三" name="name3">
<Table :columns="columns1" :data="data1"></Table>
</Tab-pane>
</Tabs>
</template>
<script>
export default {
data () {
return {
tabs:[
{label:'标签0',content:'标签内容0'},
{label:'标签1',content:'标签内容1'},
{label:'标签2',content:'标签内容2'},
columns1: [
{
title: '姓名',
key: 'name'
},
{
title: '年龄',
key: 'age'
},
{
title: '地址',
key: 'address'
}
],
tab0: true,
tab1: true,
tab2: true
}
},
methods: {
handleTagRemove (name) {
this['tab' + name] = false;
},
addTab(){
this.tabs.push({label:'标签'+this.tabs.length,content:'标签内容'+this.tabs.length});
data1: [
{
name: '王小明',
age: 18,
address: '北京市朝阳区芍药居'
},
{
name: '张小刚',
age: 25,
address: '北京市海淀区西二旗'
},
{
name: '李小红',
age: 30,
address: '上海市浦东新区世纪大道'
},
{
name: '周小伟',
age: 26,
address: '深圳市南山区深南大道'
}
]
}
}
}

View file

@ -32,12 +32,13 @@
import TransferDom from '../../directives/transfer-dom';
import { getScrollBarSize } from '../../utils/assist';
import Locale from '../../mixins/locale';
import Emitter from '../../mixins/emitter';
const prefixCls = 'ivu-modal';
export default {
name: 'Modal',
mixins: [ Locale ],
mixins: [ Locale, Emitter ],
components: { Icon, iButton },
directives: { TransferDom },
props: {
@ -247,6 +248,7 @@
this.addScrollEffect();
}
}
this.broadcast('Table', 'on-visible-change', val);
},
loading (val) {
if (!val) {

View file

@ -664,6 +664,9 @@
this.fixedHeader();
this.$nextTick(() => this.ready = true);
window.addEventListener('resize', this.handleResize, false);
this.$on('on-visible-change', (val) => {
if (val) this.handleResize();
});
},
beforeDestroy () {
window.removeEventListener('resize', this.handleResize, false);

View file

@ -23,11 +23,13 @@
<script>
import Icon from '../icon/icon.vue';
import { oneOf, getStyle } from '../../utils/assist';
import Emitter from '../../mixins/emitter';
const prefixCls = 'ivu-tabs';
export default {
name: 'Tabs',
mixins: [ Emitter ],
components: { Icon },
props: {
value: {
@ -226,6 +228,7 @@
activeKey () {
this.updateBar();
this.updateStatus();
this.broadcast('Table', 'on-visible-change', true);
}
},
mounted () {

View file

@ -168,14 +168,14 @@ export function scrollTop(el, from = 0, to, duration = 500) {
}
// Find components upward
function findComponentUpward (content, componentName, componentNames) {
function findComponentUpward (context, componentName, componentNames) {
if (typeof componentName === 'string') {
componentNames = [componentName];
} else {
componentNames = componentName;
}
let parent = content.$parent;
let parent = context.$parent;
let name = parent.$options.name;
while (parent && (!name || componentNames.indexOf(name) < 0)) {
parent = parent.$parent;
@ -186,8 +186,8 @@ function findComponentUpward (content, componentName, componentNames) {
export {findComponentUpward};
// Find component downward
function findComponentDownward (content, componentName) {
const childrens = content.$children;
function findComponentDownward (context, componentName) {
const childrens = context.$children;
let children = null;
if (childrens.length) {
@ -215,8 +215,8 @@ function findComponentDownward (content, componentName) {
export {findComponentDownward};
// Find components downward
function findComponentsDownward (content, componentName, components = []) {
const childrens = content.$children;
function findComponentsDownward (context, componentName, components = []) {
const childrens = context.$children;
if (childrens.length) {
childrens.forEach(child => {