cu-custom.wxml 627 B

12345678910111213141516171819
  1. <view class="cu-custom" style="height:{{CustomBar}}px">
  2. <view class="cu-bar fixed bg-gradual-blue" style="height:{{CustomBar}}px;padding-top:{{StatusBar}}px;}}">
  3. <view class="action" bindtap="BackPage" wx:if="{{isBack}}">
  4. <text class="cuIcon-back"></text>
  5. <slot name="backText"></slot>
  6. </view>
  7. <view class="action" wx:if="{{isCustom}}" bindtap="toHome">
  8. <text class="cuIcon-home" ></text>
  9. <slot name="backText"></slot>
  10. </view>
  11. <view class="content" style="top:{{StatusBar}}px">
  12. <slot name="content"></slot>
  13. </view>
  14. <slot name="right"></slot>
  15. </view>
  16. </view>