Skip to content

Commit

Permalink
fix(components-qa): 快应用 tabBar 图片需占位
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyadam committed Jul 3, 2019
1 parent 3cda7bb commit 7e7c07e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</block>
<div class="taro-tabbar" if="{{showTabBar}}" style="background-color:{{tabBarData.backgroundColor ? tabBarData.backgroundColor : '#ffffff'}}">
<div class="taro-tabbar_item" for="(index, item) in tabBarData.list" @click="onSelected(item, index)">
<image if="{{ item.selectedIconPath || item.iconPath }}" src="{{ item.selected ? item.selectedIconPath : item.iconPath }}" />
<image src="{{ item.selected ? item.selectedIconPath : item.iconPath }}" />
<text style="color:{{ item.selected ? tabBarData.selectedColor: tabBarData.color }};font-size: 20px;">
{{item.text}}
</text>
Expand Down

0 comments on commit 7e7c07e

Please sign in to comment.