header-nav.wxml 852 B

1234567891011121314151617181920
  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="navbar-left">
  5. <view class='back-icon' wx:if="{{backIcon}}" bindtap='back'>
  6. <image src='{{backIcon}}'></image>
  7. </view>
  8. <view class='home-icon' wx:if="{{homeIcon}}" bindtap='home'>
  9. <image src='{{homeIcon}}'></image>
  10. </view>
  11. </view>
  12. <view class='nav-icon' wx:if="{{titleImg}}">
  13. <image src='{{titleImg}}' style='{{iconStyle}}'></image>
  14. </view>
  15. <view class='nav-title' wx:if="{{titleText && !titleImg}}">
  16. <text style='{{textStyle}}'>{{titleText}}</text>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="auto-padding" style='height: {{status + navHeight}}px'></view>