27 lines
1.1 KiB
Plaintext
Executable File
27 lines
1.1 KiB
Plaintext
Executable File
<view class="cu-custom" style="height:{{CustomBar}}px">
|
|
<view
|
|
class="cu-bar fixed {{bgImage!=''?'none-bg text-white bg-img':''}} {{isWhite ? 'title-bar-bg-white':'title-bar-bg'}}"
|
|
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" bindtap="GoHome" wx:if="{{isRelaunch}}">
|
|
<text class="cuIcon-back"></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="BackPage"></text>
|
|
<text class="cuIcon-homefill" bindtap="toHome"></text>
|
|
</view>
|
|
<view class="content" style="top:{{StatusBar}}px" bindtap="showIcre">
|
|
<slot name="content"></slot>
|
|
</view>
|
|
<view class="center" wx:if="{{isIndex}}" bindtap="goCenter">
|
|
<image src="{{userIcon}}"></image>
|
|
个人中心
|
|
</view>
|
|
<slot name="right"></slot>
|
|
</view>
|
|
</view> |