18 lines
574 B
Plaintext
18 lines
574 B
Plaintext
|
|
<!-- 自定义导航栏组件 -->
|
||
|
|
<view class="custom-navbar" style="height: {{navbarHeight}}px;">
|
||
|
|
<!-- 返回按钮 -->
|
||
|
|
<view
|
||
|
|
class="nav-back-btn"
|
||
|
|
wx:if="{{showBack}}"
|
||
|
|
bindtap="onBackTap"
|
||
|
|
style="top: {{menuButtonTop}}px; height: {{menuButtonHeight}}px;">
|
||
|
|
<text class="back-icon">←</text>
|
||
|
|
<text class="back-text" wx:if="{{backText}}">{{backText}}</text>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<!-- 标题 -->
|
||
|
|
<view class="nav-title-wrap" style="height: {{menuButtonHeight}}px; top: {{menuButtonTop}}px;">
|
||
|
|
<text class="nav-title">{{title}}</text>
|
||
|
|
</view>
|
||
|
|
</view>
|