1234567891011121314151617181920212223 |
- <!--components/customPage/customPage.wxml-->
- <view class="custom-page">
- <view class="custom-head" style="{{headStyle}}">
- <slot name="head"/>
- <view wx:if="{{headBgImage}}" class="head-bg">
- <image src="{{headBgImage}}" mode=widthFix" bindload="loadImage"/>
- </view>
- </view>
- <view class="custom-body" style="height: {{bodyHeight}}px;" >
- <scroll-view style="height: {{bodyHeight}}px;" scroll-y bindscrolltolower="handleReachBottom">
- <view wx:if="{{headBgImage}}" class="body-split-bg" style="height:{{bodyImageHeight}}px;">
- <image style="top:-{{navHeight}}px" src="{{headBgImage}}" mode="widthFix"/>
- </view>
- <view class="body-content" style="top:-{{bodyImageHeight}}px;">
- <slot name="body" />
- </view>
- </scroll-view>
- </view>
-
- </view>
|