18 lines
723 B
Plaintext
18 lines
723 B
Plaintext
<view class="nav-spacer" style="height: {{_spacerHeight}}; {{_navStyle}}">
|
|
<view class="nav-wrap" style="background-color: {{bgColor}};">
|
|
<view style="height: {{statusBarHeight}}px;"></view>
|
|
<view class="nav-content" style="height: {{navBarHeight}}px; padding-right: {{navPaddingRight}}px;">
|
|
<view class="nav-left">
|
|
<block wx:if="{{_showBack}}">
|
|
<view class="back-btn" bind:tap="onBack">
|
|
<view class="back-arrow" style="border-left-color: {{arrowColor}}; border-bottom-color: {{arrowColor}};"></view>
|
|
</view>
|
|
</block>
|
|
<slot name="left" />
|
|
</view>
|
|
<view class="nav-center">
|
|
<text class="nav-title" style="color: {{color}};">{{title}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |