statusBar.wxml 762 B

1234567891011121314151617
  1. <!-- 没有按钮的情况 -->
  2. <view class="custom flex_center" style="padding-top:{{statusBarHeight}}px" wx:if="{{!isshowbtn}}">
  3. <view class='custom iconv' bindtap="prePageTap">
  4. <image class="back" src="../../static/index/back_my.png" />
  5. </view>
  6. <view class='custom title'>{{title}}</view>
  7. </view>
  8. <!-- 显示按钮的情况 -->
  9. <view class="custom flex_center" style="padding-top:{{statusBarHeight}}px" wx:else>
  10. <view class='custom iconv' bindtap="gradeTap">
  11. <text class="custom text">{{gradeText}}</text>
  12. <view class="custom arrow"></view>
  13. </view>
  14. <view class='custom title'>{{title}}</view>
  15. </view>
  16. <!-- 站位行,填补空白 -->
  17. <view class="empty_custom" style="padding-top:{{statusBarHeight}}px"></view>