navBar.wxml 1.1 KB

123456789101112131415161718192021222324
  1. <view class='nav' style='height: {{status + navHeight}}px'>
  2. <view class='status' style='height:{{status}}px;{{containerStyle}}'></view>
  3. <view class='navbar' style='height:{{navHeight}}px;{{containerStyle}}'>
  4. <!-- <view class='back-icon' wx:if="{{backIcon}}" bindtap='back'>
  5. <image src='{{backIcon}}'></image>
  6. </view>
  7. <view class='home-icon' wx:if="{{homeIcon}}" bindtap='home'>
  8. <image src='{{homeIcon}}'></image>
  9. </view>
  10. <view class='nav-icon' wx:if="{{titleImg}}">
  11. <image src='{{titleImg}}' style='{{iconStyle}}'></image>
  12. </view> -->
  13. <!-- <view class='nav-title' wx:if="{{titleText && !titleImg}}">
  14. <text style='{{textStyle}}'>{{titleText}}</text>
  15. </view> -->
  16. <view class='nav-title'>
  17. <view class="input-box row">
  18. <input placeholder="请输入板块代码" bindtap="search" />
  19. <icon class="weui-icon-search_in-box" type="search" size="20"></icon>
  20. </view>
  21. <!-- <input placeholder="请输入板块代码" style='{{textStyle}}'/> -->
  22. </view>
  23. </view>
  24. </view>