statusBar.wxml 629 B

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