index.wxml 625 B

123456789101112131415
  1. <view class="body">
  2. <view class="head" wx:if="{{frameStyle.useTop}}" style="background:{{frameStyle.topBg||'#F5F5F9'}};">
  3. <top frameStyle="{{frameStyle}}" bind:back="back"></top>
  4. </view>
  5. <view class="info" >
  6. <scroll-view scroll-y="true" class="scroll-view">
  7. <view class="list-scroll-view">
  8. <slot name="info"></slot>
  9. </view>
  10. </scroll-view>
  11. </view>
  12. <view class="foot" wx:if="{{frameStyle.useBar}}" style="background:{{frameStyle.barBg||'#ffffff'}};">
  13. <foot bind:tabPath="tabPath" frameStyle="{{frameStyle}}"></foot>
  14. </view>
  15. </view>