You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
804 B
17 lines
804 B
<view class="cu-custom {{fragment ? 'top-bg': ''}}" style="height:{{CustomBar}}px;z-index: 99;">
|
|
<view class="cu-bar fixed {{bgColor}}" style="height:{{CustomBar}}px;padding-top:{{StatusBar}}rpx;">
|
|
<view class="action" bindtap="backspace" wx:if="{{isBack}}">
|
|
<text class="weui_goback"></text>
|
|
<slot name="backText"></slot>
|
|
</view>
|
|
<view class="action border-custom" wx:if="{{isCustom}}"
|
|
style="width:{{Custom.width}}px;height:{{Custom.height}}px;margin-left:calc(750rpx - {{Custom.right}}px)">
|
|
<text class="cuIcon-back" bindtap="backspace"></text>
|
|
<text class="cuIcon-homefill" bindtap="toHome"></text>
|
|
</view>
|
|
<view class="content" style="top:{{StatusBar}}rpx;color:black;font-size:36rpx">
|
|
<slot name="content"></slot>
|
|
</view>
|
|
<slot name="right"></slot>
|
|
</view>
|
|
</view>
|