[improvement] Tabbar: optimize layout (#761)

This commit is contained in:
neverland 2018-10-15 11:09:41 +08:00 committed by GitHub
parent fd7fce15ea
commit 2b969f5a53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 13 deletions

View File

@ -1,7 +1,10 @@
@import '../common/style/var.less';
:host {
flex: 1;
}
.van-tabbar-item {
float: left;
color: #666;
height: 100%;
display: flex;

View File

@ -13,8 +13,7 @@ VantComponent({
},
data: {
active: false,
count: 0
active: false
},
methods: {
@ -26,10 +25,9 @@ VantComponent({
this.$emit('click');
},
setActive(data) {
const { active, count } = this.data;
if (active !== data.active || count !== data.count) {
this.setData(data);
setActive(active) {
if (this.data.active !== active) {
this.setData({ active });
}
}
}

View File

@ -1,6 +1,5 @@
<view
class="van-tabbar-item {{ active ? 'van-tabbar-item--active' : '' }}"
style="{{ count ? 'width: ' + 100 / count + '%' : '' }}"
bind:tap="onClick"
>
<view class="van-tabbar-item__icon {{ dot ? 'van-tabbar-item__icon--dot' : '' }}">

View File

@ -3,7 +3,8 @@
.van-tabbar {
width: 100%;
height: 50px;
background-color: #fff;
display: flex;
background-color: @white;
&--fixed {
left: 0;

View File

@ -49,10 +49,7 @@ VantComponent({
methods: {
setActiveItem() {
this.data.items.forEach((item, index) => {
item.setActive({
active: index === this.data.currentActive,
count: this.data.items.length
});
item.setActive(index === this.data.currentActive);
});
},