You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
747 B
17 lines
747 B
2 years ago
|
<view class="nav" style='height: {{status + navHeight}}px'>
|
||
|
<view class="status" style='height: {{status}}px;{{containerStyle}}'></view>
|
||
|
<view class='navbar' style='height:{{navHeight}}px;{{containerStyle}}'>
|
||
|
<view wx:if="{{showBack}}" class='back-icon' bindtap='back'>
|
||
|
<image src="../../images/arrow3-left.png" />
|
||
|
</view>
|
||
|
<view class='home-icon' wx:if="{{homeIcon}}" bindtap='home'>
|
||
|
<image src='{{homeIcon}}'></image>
|
||
|
</view>
|
||
|
<view class='nav-icon' wx:if="{{titleImg}}">
|
||
|
<image src='{{titleImg}}' style='{{iconStyle}}'></image>
|
||
|
</view>
|
||
|
<view class='nav-title' wx:if="{{titleText && !titleImg}}">
|
||
|
<text style='{{textStyle}}'>{{titleText}}</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|