header-nav.wxml 990 B

1234567891011121314151617181920
  1. <view class='nav' style='height: {{status + navHeight}}px;background:{{background}}'>
  2. <view class='status' style='height: {{status}}px;{{containerStyle}}'></view>
  3. <view class='navbar' style='height:{{navHeight}}px;{{containerStyle}}'>
  4. <view class="navbar-left" style="{{isTransparent ? 'background:rgba(255,255,255,0.59);border: none;' : ''}}">
  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" wx:if="{{ !isTransparent }}" style='height: {{status + navHeight}}px'></view>