1234567891011121314151617181920 |
- <view class='nav' style='height: {{status + navHeight}}px;background:{{background}}'>
- <view class='status' style='height: {{status}}px;{{containerStyle}}'></view>
- <view class='navbar' style='height:{{navHeight}}px;{{containerStyle}}'>
- <view class="navbar-left" style="{{isTransparent ? 'background:rgba(255,255,255,0.59);border: none;' : ''}}">
- <view class='back-icon' wx:if="{{backIcon}}" bindtap='back'>
- <image src='{{backIcon}}'></image>
- </view>
- <view class='home-icon' wx:if="{{homeIcon}}" bindtap='home'>
- <image src='{{homeIcon}}'></image>
- </view>
- </view>
- <view class='nav-icon' wx:if="{{titleImg}}">
- <image src='{{titleImg}}' style='{{iconStyle}}'></image>
- </view>
- <view class='nav-title' wx:if="{{titleText && !titleImg}}">
- <text style='{{textStyle}}'>{{titleText}}</text>
- </view>
- </view>
- </view>
- <view class="auto-padding" wx:if="{{ !isTransparent }}" style='height: {{status + navHeight}}px'></view>
|