index.wxml 653 B

1234567891011121314
  1. <cover-view class="nav-wrap" style='height: {{height*2 + 25}}px;'>
  2. <!-- 导航栏 中间的标题 -->
  3. <cover-view class='nav-title' style='line-height: {{height*2 + 45}}px;'>
  4. {{navbarData.name}}
  5. </cover-view>
  6. <cover-view style='display: flex; justify-content: space-around;flex-direction: column;' wx:if="{{needBack}}">
  7. <!-- 导航栏 左上角的返回按钮 -->
  8. <cover-view class='nav-capsule' style='height: {{height*2 + 45}}px;'>
  9. <cover-view bindtap='_navback'>
  10. <cover-image src='/image/back.png' mode='aspectFill' class='back-pre'></cover-image>
  11. </cover-view>
  12. </cover-view>
  13. </cover-view>
  14. </cover-view>