nav.wxml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <view
  2. class="cu-bar"
  3. style="height:{{2 *customBarHeight}}rpx;"
  4. wx:if="{{type!='my'}}"
  5. >
  6. <view
  7. wx:if="{{type=='location'}}"
  8. class="nav"
  9. style="height:{{2 *customBarHeight}}rpx; padding-top:{{statusBarHeight * 2 + 20}}rpx;color:{{fontColor}}"
  10. type="{{type}}"
  11. >
  12. <van-icon name="location" color="#fbfbfb" />
  13. <view class="school">阜康市</view>
  14. <view class="title">{{title}}</view>
  15. </view>
  16. <view
  17. wx:if="{{type=='title'}}"
  18. class="navs"
  19. style="height:{{2 *customBarHeight}}rpx; padding-top:{{statusBarHeight * 2 + 20}}rpx;color:{{fontColor}}"
  20. type="{{type}}"
  21. >
  22. {{title}}
  23. </view>
  24. </view>
  25. <block wx:if="{{type=='my'}}">
  26. <image src="{{backgroundImg}}" class="background-img" />
  27. <view
  28. class="nav-my"
  29. style="height:{{2 *customBarHeight}}rpx; padding-top:{{statusBarHeight * 2 + 20}}rpx;color:{{fontColor}};"
  30. type="{{type}}"
  31. >
  32. <view class="school">
  33. <image src="https://file.ruixiuauto.com/cDBRXuM6Xh/20230809/rfg1vr030505348.png" style="width: 83rpx;height: 48rpx;" />
  34. </view>
  35. <view class="title">{{title}}</view>
  36. </view>
  37. </block>