update Transfer

update Transfer
This commit is contained in:
梁灏 2016-11-18 17:37:59 +08:00
parent 967e8e4312
commit bf0203db3d
5 changed files with 22 additions and 5 deletions

View file

@ -1,5 +1,5 @@
<template>
<div :class="prefixCls" :style="style">
<div :class="classes" :style="style">
<div :class="prefixCls + '-header'">
<Checkbox :checked.sync="checkedAll" :disabled="checkedAllDisabled" @on-change="toggleSelectAll"></Checkbox>
<span>{{ title }}</span>
@ -53,6 +53,14 @@
}
},
computed: {
classes () {
return [
`${this.prefixCls}`,
{
[`${this.prefixCls}-with-footer`]: this.showFooter
}
]
},
bodyClasses () {
return [
`${this.prefixCls}-body`,