2024-01-16 14:59:06 +08:00

42 lines
1.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 显示胶囊返回和home -->
<t-navbar title="{{navbarData.title}}" wx:if="{{navbarData.showCapsule == 1}}">
<view slot="capsule" class="custom-capsule">
<t-icon
size="20"
bind:tap="onBack"
aria-role="button"
aria-label="返回"
name="chevron-left"
class="custom-capsule__icon"
/>
<t-icon
size="20"
bind:tap="onGoHome"
aria-role="button"
aria-label="首页"
name="home"
class="custom-capsule__icon"
/>
</view>
</t-navbar>
<!-- 仅显示返回 -->
<view class="block" wx:if="{{navbarData.showCapsule == 2}}">
<t-navbar class="block" title="{{navbarData.title}}" left-arrow go-back />
</view>
<!-- 仅显示home -->
<t-navbar title="{{navbarData.title}}" wx:if="{{navbarData.showCapsule == 3}}">
<view slot="left" class="custom-capsule-home">
<t-icon
size="20"
bind:tap="onGoHome"
aria-role="button"
aria-label="首页"
name="home"
class="custom-capsule__icon"
/>
</view>
</t-navbar>
<!-- 都不显示 -->
<view class="block" wx:if="{{navbarData.showCapsule == 0}}">
<t-navbar class="block" title="{{navbarData.title}}" />
</view>