haomingming 4f14aad6f3 优化
2023-04-11 18:41:46 +08:00

42 lines
1.2 KiB
Plaintext
Raw Permalink 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>