tab fix scroll-view height

This commit is contained in:
pangxie1991 2017-04-07 16:49:16 +08:00
parent 3674ddbf90
commit a7c07f24be
2 changed files with 9 additions and 3 deletions

6
dist/tab/index.wxml vendored
View File

@ -1,7 +1,11 @@
<template name="zan-tab">
<view class="zan-tab">
<block wx:if="{{tab.scroll}}">
<scroll-view class="zan-tab__bd zan-tab__bd--scroll {{fixed ? 'zan-tab__bd--fixed' : ''}}" scroll-x="true">
<scroll-view
class="zan-tab__bd zan-tab__bd--scroll {{ fixed ? 'zan-tab__bd--fixed' : '' }}"
scroll-x="true"
style="height: {{ tab.height ? tab.height + 'px' : 'auto' }}"
>
<template is="zan-tab-list" data="{{ tab, componentId }}"></template>
</scroll-view>
</block>

View File

@ -43,7 +43,8 @@ Page(Object.assign({}, Zan.Tab, {
title: '最新商品6'
}],
selectedId: '1',
scroll: true
scroll: true,
height: 45
},
tab3: {
list: [{
@ -66,7 +67,8 @@ Page(Object.assign({}, Zan.Tab, {
title: '商品6'
}],
selectedId: '1',
scroll: true
scroll: true,
height: 45
}
},