Paooofuu/miniprogram/components/nav-bar/index.wxml

16 lines
611 B
Plaintext

<view class="nav-placeholder" style="height: {{totalHeight}}px;"></view>
<view class="nav-fixed theme-{{theme}}" style="padding-top: {{statusBarHeight}}px;">
<view class="nav-content" style="height: {{navBarHeight}}px;">
<view class="side left" style="width: {{sideWidth}}px;">
<view wx:if="{{showBack}}" class="back-btn" bindtap="onTapBack">返回</view>
</view>
<view class="title">{{title}}</view>
<view class="side right" style="width: {{sideWidth}}px;">
<view wx:if="{{rightText}}" class="right-text" bindtap="onTapRight">{{rightText}}</view>
</view>
</view>
</view>