| 1234567891011121314151617181920212223242526272829303132 |
- <view class="cu-custom" style="height:{{CustomBar}}px">
- <cover-view class="cu-bar fixed {{bgImage!=''?'none-bg text-white bg-img':''}} {{bgColor}}"
- style="height:{{CustomBar+1}}px;{{bgImage?'background-image:url(' + bgImage+')':''}}">
- <cover-view class="history" bindtap="BackPage" wx:if="{{isBack}}">
- <cover-image class="customImage" src="../../img/history.png"></cover-image>
- </cover-view>
- <cover-view class="history" bindtap="toQuery" wx:if="{{isQuery}}">
- <cover-image class="customImage" src="../../img/history.png"></cover-image>
- </cover-view>
- <cover-view class="goHome" wx:if="{{canGoHome}}" style="width:{{Custom.width}}px;height:{{Custom.height}}px;margin-left:calc(750rpx - {{Custom.right}}px)" bindtap="toHome">
- <!-- <text class="cuIcon-homefill" bindtap="toHome"></text>
- <text class="text-home" bindtap="toHome">首页</text> -->
- <cover-image src="/img/index.png" class="actionImage"></cover-image>
- <!-- <cover-view class="text-home">首页</cover-view> -->
- </cover-view>
- <cover-view class="goHome" wx:if="{{isSystem}}" style="width:{{Custom.width}}px;height:{{Custom.height}}px;margin-left:calc(750rpx - {{Custom.right}}px)" bindtap="systemBut">
- {{setName}}
- </cover-view>
- <!-- <view class="action" bindtap="to5G" wx:if="{{is5G}}">
- <slot name="leftText"></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 class="text-sm" bindtap="toHome">相册</view>
- </view> -->
- <cover-view class="content" style="top:{{StatusBar}}px">
- <!-- <slot name="content"></slot> -->{{title}}
- </cover-view>
- <!-- <slot name="right"></slot> -->
- </cover-view>
- </view>
|