customPage.wxml 825 B

1234567891011121314151617181920212223
  1. <!--components/customPage/customPage.wxml-->
  2. <view class="custom-page">
  3. <view class="custom-head" style="{{headStyle}}">
  4. <slot name="head"/>
  5. <view wx:if="{{headBgImage}}" class="head-bg">
  6. <image src="{{headBgImage}}" mode=widthFix" bindload="loadImage"/>
  7. </view>
  8. </view>
  9. <view class="custom-body" style="height: {{bodyHeight}}px;" >
  10. <scroll-view style="height: {{bodyHeight}}px;" scroll-y bindscrolltolower="handleReachBottom">
  11. <view wx:if="{{headBgImage}}" class="body-split-bg" style="height:{{bodyImageHeight}}px;">
  12. <image style="top:-{{navHeight}}px" src="{{headBgImage}}" mode="widthFix"/>
  13. </view>
  14. <view class="body-content" style="top:-{{bodyImageHeight}}px;">
  15. <slot name="body" />
  16. </view>
  17. </scroll-view>
  18. </view>
  19. </view>