navbar.wxml 706 B

123456789101112
  1. <!--compone/navbar/navbar.wxml-->
  2. <view class='nav-wrap' style='height: {{height*2 + 20}}px;background-color: {{backgroundColor}};color: {{fontColor}};'>
  3. <view class='nav-title' style='line-height: {{height*2 + 44}}px;'>{{navbarData.title}}</view>
  4. <view style='display: flex; justify-content: space-around;flex-direction: column'>
  5. <view class='nav-capsule' style='height: {{height*2 + 22}}px;' wx:if='{{navbarData.showCapsule}}'>
  6. <view bindtap='_navback' style="margin-top: 30rpx;" wx:if='{{!share}}'>
  7. <image src='/images/fanhui.png' mode='aspectFill' class='back-pre'></image>
  8. </view>
  9. </view>
  10. </view>
  11. </view>
  12. <view style="height: {{height*2 + 21}}px;width: 100%;"></view>