123456789101112131415161718192021222324252627282930313233343536373839 |
- <view
- class="cu-bar"
- style="height:{{2 *customBarHeight}}rpx;"
- wx:if="{{type!='my'}}"
- >
- <view
- wx:if="{{type=='location'}}"
- class="nav"
- style="height:{{2 *customBarHeight}}rpx; padding-top:{{statusBarHeight * 2 + 20}}rpx;color:{{fontColor}}"
- type="{{type}}"
- >
- <van-icon name="location" color="#fbfbfb" />
- <view class="school">阜康市</view>
- <view class="title">{{title}}</view>
- </view>
- <view
- wx:if="{{type=='title'}}"
- class="navs"
- style="height:{{2 *customBarHeight}}rpx; padding-top:{{statusBarHeight * 2 + 20}}rpx;color:{{fontColor}}"
- type="{{type}}"
- >
- {{title}}
- </view>
- </view>
- <block wx:if="{{type=='my'}}">
- <image src="{{backgroundImg}}" class="background-img" />
- <view
- class="nav-my"
- style="height:{{2 *customBarHeight}}rpx; padding-top:{{statusBarHeight * 2 + 20}}rpx;color:{{fontColor}};"
- type="{{type}}"
- >
- <view class="school">
- <image src="https://file.ruixiuauto.com/cDBRXuM6Xh/20230809/rfg1vr030505348.png" style="width: 83rpx;height: 48rpx;" />
- </view>
- <view class="title">{{title}}</view>
- </view>
- </block>
|