navbar.wxml 815 B

123456789101112131415
  1. <view class='nav-wrap' style='height: {{height*2 + 80}}rpx;'>
  2. <view class='nav-title' style='line-height: {{height*2 + 44}}px;'>{{navbarData.title}}</view>
  3. <view style='display: flex; justify-content: space-around;flex-direction: column'>
  4. <view class='nav-capsule' style='height: {{height*2 + 44}}px;' wx:if='{{navbarData.showCapsule}}'>
  5. <view bindtap='_navbackMess' wx:if='{{!share}}' style="width:50px;padding:0 0 0 30rpx;">
  6. <image src='/pages/images/notice.png' style="width:44rpx;height:44rpx;margin-top:10rpx;"></image>
  7. </view>
  8. </view>
  9. <view class='nav-capsule' style='height: {{height*2 + 44}}px;' wx:if='{{navbarData.showBack}}'>
  10. <view bindtap='_navback' wx:if='{{!share}}' style="width:50px;padding:0 0 0 30rpx;">
  11. <van-icon name="arrow-left" />
  12. </view>
  13. </view>
  14. </view>
  15. </view>