小程序自定義tabbar custom-tab-bar 6s出不來解決方案,cover-view不兼容

1.從微信小程序的官網扣下來的demo,實際測試中,發現6s ios10 系統不兼容,裏面的內容出不來css

<cover-view class="tab-bar">
  <cover-view class="tab-bar-border"></cover-view>
  <cover-view wx:for="{{list}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
    <cover-image src="{{item.checked ? item.selectedIconPath : item.iconPath}}" ></cover-image>
    <cover-view >{{item.text}}</cover-view>
  </cover-view>
</cover-view>

2.實際效果以下: 底部的tabbar沒出來html

3.把 cover-view 改爲 view  把  cover-image 改爲 image 標籤ios

<view class="tab-bar">
  <view class="tab-bar-border"></view>
  <view wx:for="{{list}}" wx:key="index" class="tab-bar-item" data-path="{{item.pagePath}}" data-index="{{index}}" bindtap="switchTab">
    <image src="{{item.checked ? item.selectedIconPath : item.iconPath}}" ></image>
    <view >{{item.text}}</view>
  </view>
</view>

4. 記得把你的css 樣式也改一下啊  默認的  class 有cover-view cover-image小程序

5.如今的效果以下微信小程序

相關文章
相關標籤/搜索