微信小程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

21 righe
1.3 KiB

  1. <!-- 自定义tabbar -->
  2. <view class="footer-container {{isIphoneX ? ' iphone-x-patcher-container' : ''}}" hidden="{{isSHowZDYTabBar}}" >
  3. <view class="footer-item-container f-home{{groupHomeCurrent == 0 ? ' active' : ''}}" catchtap="jumpToGroupPage" data-url="/pages/show/show">
  4. <text class="nav-msg">首页</text>
  5. </view>
  6. <view class="footer-item-container f-cate{{groupHomeCurrent == 1 ? ' active' : ''}}" catchtap="jumpToGroupPage" data-url="/pages/index/index">
  7. <text class="nav-msg">分类</text>
  8. </view>
  9. <view class="footer-item-container f-scan{{groupHomeCurrent == 2 ? ' active' : ''}}" catchtap="jumpToGroupPage" data-url="/pages/index/index" >
  10. <view class="scan-jump"></view>
  11. </view>
  12. <view class="footer-item-container f-cart{{groupHomeCurrent == 3 ? ' active' : ''}}" catchtap="jumpToGroupPage" data-url="/pages/index/index">
  13. <text class="nav-msg">购物车</text>
  14. <text class="nav-cart-num" style="display: {{groupManageCartNum <= 0 ? 'none' : ''}};">{{groupManageCartNum}}</text>
  15. </view>
  16. <view class="footer-item-container f-user{{groupHomeCurrent == 4 ? ' active' : ''}}" catchtap="jumpToGroupPage" data-url="/pages/index/index">
  17. <text class="nav-msg">我的</text>
  18. </view>
  19. <component-iphone-x-patcher></component-iphone-x-patcher>
  20. </view>