12345678910111213141516171819 |
- <view class="cu-custom" style="height:{{CustomBar}}px">
- <view class="cu-bar fixed bg-gradual-blue" style="height:{{CustomBar}}px;padding-top:{{StatusBar}}px;}}">
- <view class="action" bindtap="BackPage" wx:if="{{isBack}}">
- <text class="cuIcon-back"></text>
- <slot name="backText"></slot>
- </view>
- <view class="action" wx:if="{{isCustom}}" bindtap="toHome">
- <text class="cuIcon-home" ></text>
- <slot name="backText"></slot>
- </view>
-
- <view class="content" style="top:{{StatusBar}}px">
- <slot name="content"></slot>
- </view>
- <slot name="right"></slot>
- </view>
- </view>
|