cu-custom.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132
  1. <view class="cu-custom" style="height:{{CustomBar}}px">
  2. <cover-view class="cu-bar fixed {{bgImage!=''?'none-bg text-white bg-img':''}} {{bgColor}}"
  3. style="height:{{CustomBar+1}}px;{{bgImage?'background-image:url(' + bgImage+')':''}}">
  4. <cover-view class="history" bindtap="BackPage" wx:if="{{isBack}}">
  5. <cover-image class="customImage" src="../../img/history.png"></cover-image>
  6. </cover-view>
  7. <cover-view class="history" bindtap="toQuery" wx:if="{{isQuery}}">
  8. <cover-image class="customImage" src="../../img/history.png"></cover-image>
  9. </cover-view>
  10. <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">
  11. <!-- <text class="cuIcon-homefill" bindtap="toHome"></text>
  12. <text class="text-home" bindtap="toHome">首页</text> -->
  13. <cover-image src="/img/index.png" class="actionImage"></cover-image>
  14. <!-- <cover-view class="text-home">首页</cover-view> -->
  15. </cover-view>
  16. <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">
  17. {{setName}}
  18. </cover-view>
  19. <!-- <view class="action" bindtap="to5G" wx:if="{{is5G}}">
  20. <slot name="leftText"></slot>
  21. </view> -->
  22. <!-- <view class="action border-custom" wx:if="{{isCustom}}" style="width:{{Custom.width}}px;height:{{Custom.height}}px;margin-left:calc(750rpx - {{Custom.right}}px)">
  23. <text class="cuIcon-back" bindtap="BackPage"></text>
  24. <text class="cuIcon-homefill" bindtap="toHome"></text>
  25. <view class="text-sm" bindtap="toHome">相册</view>
  26. </view> -->
  27. <cover-view class="content" style="top:{{StatusBar}}px">
  28. <!-- <slot name="content"></slot> -->{{title}}
  29. </cover-view>
  30. <!-- <slot name="right"></slot> -->
  31. </cover-view>
  32. </view>