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.
18 lines
957 B
18 lines
957 B
3 months ago
|
<!-- components/navigationBar.wxml -->
|
||
|
<view class="navigation-container" style="{{'height: ' + navigationBarAndStatusBarHeight}}">
|
||
|
<view class="navbg" wx:if="{{isShowBg && backgroundImage}}" style="background-image:url({{backgroundImage}}); background-size: 100% 100%; background-repeat: no-repeat; height: {{height}}">
|
||
|
<!-- 空白来占位状态栏 -->
|
||
|
<view style="{{'height: ' + statusBarHeight}}"></view>
|
||
|
<!-- 自定义导航栏 -->
|
||
|
|
||
|
<view class="navigation-bar" style=" height: {{navigationBarHeight}}">
|
||
|
<view class="arrow-content">
|
||
|
<view class="arrow" wx:if="{{isSowArrow}}" bindtap="handleGoToBack"></view>
|
||
|
</view>
|
||
|
<view class="navigation-title" style="{{'line-height:' + navigationBarHeight}}">{{title}}</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
</view>
|
||
|
<!-- 空白占位fixed空出的位置 -->
|
||
|
<view style="{{'height: ' + navigationBarAndStatusBarHeight}}"></view>
|