<view class="wv-top-nav" style="--status-bar-height: {{statusBarHeight}}px; --nav-height: {{navHeight}}px; --total-height: {{totalHeight}}px">
  <view class="wv-top-nav-inner">
    <view class="wv-top-nav-status-bar"></view>
    
    <view class="wv-top-nav-container wv-item full inactivable">
      <view class="wv-item-annotation" 
          bind:tap="doBack" 
          wx:if="{{backBtn && !(isHomePage && hideBackBtnOnHomePage)}}">

        <view class="nav-top-back-btn wv-tile horizontal wv-theme wv-theme-light wv-content-dark">
          <view class="icon-area"><text class="wv-icon {{backApplyIcon}}"></text></view>
          
          <view class="label">
            <view class="slot-defaultable">
              <view class="slot"><slot name="back-text"></slot></view>
              <view class="default-slot">{{backText}}</view>
            </view>
          </view>
        </view>
      </view>
      
      <view class="wv-item-annotation" wx:else>
        <view class="wv-tilegrid wv-flex">
          <view class="wv-tile horizontal"></view>
        </view>
      </view>

      <view class="wv-top-nav-title">
        <view class="slot-defaultable">
          <view class="slot"><slot name="title"></slot></view>
          <view class="default-slot">{{ title }}</view>
        </view>
      </view>
    </view>
  </view>
  
  <view class="wv-top-nav-spacer"></view>
</view>


