navBar.wxml 783 B

1234567891011121314151617
  1. <view class='nav' style='height: {{status + navHeight}}px'>
  2. <view class='status' style='height: {{status}}px;{{containerStyle}}'></view>
  3. <view class='navbar' style='height:{{navHeight}}px;{{containerStyle}}'>
  4. <view class='back-icon' wx:if="{{backIcon}}" bindtap='back'>
  5. <image src='{{backIcon}}'></image>
  6. </view>
  7. <view class='home-icon' wx:if="{{homeIcon}}" bindtap='home'>
  8. <image src='{{homeIcon}}'></image>
  9. </view>
  10. <view class='nav-icon' wx:if="{{titleImg}}">
  11. <image src='{{titleImg}}' style='{{iconStyle}}'></image>
  12. </view>
  13. <view class='nav-title' wx:if="{{titleText && !titleImg}}">
  14. <text style='{{textStyle}}'>{{titleText}}</text>
  15. </view>
  16. </view>
  17. </view>