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
933 B
17 lines
933 B
<view class='nav' style='height: {{status + navHeight}}px'>
|
|
<view class='status' style='height: {{status}}px;{{containerStyle}}'></view>
|
|
<view class='navbar' style='height:{{navHeight}}px;width:100%;position: fixed;top: 0;left: 0;padding-top: {{status}}px;z-index: 99;{{containerStyle}}'>
|
|
<view class='back-icon' wx:if="{{backIcon}}" bindtap='back' style="padding-top: {{status}}px;">
|
|
<image src='{{backIcon}}'></image>
|
|
</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' style="padding-top: {{status}}px;" wx:if="{{titleText && !titleImg}}">
|
|
<text style='{{textStyle}}'>{{titleText}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|