Files
Pet3/miniprogram/custom-tab-bar/index.wxml
2026-06-25 18:24:29 +08:00

22 lines
858 B
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.
<!-- 自定义 tabBar左[记录] 中[遛狗FAB] 右[我的] -->
<view class="tabbar">
<view class="tab {{selected===0?'active':''}}" data-index="0" data-path="/pages/records/records" bindtap="switchTab">
<view class="tab-ico">▤</view>
<text class="tab-txt">记录</text>
</view>
<view class="tab-center">
<view class="fab fab-{{walkState}}" bindtap="onCenterTap">
<text class="fab-ico">{{walkState==='paused' ? '❚❚' : '🐾'}}</text>
</view>
<text class="tab-txt center-txt-{{walkState}}">
{{walkState==='walking' ? '遛狗中' : walkState==='paused' ? '已暂停' : '遛狗'}}
</text>
</view>
<view class="tab {{selected===1?'active':''}}" data-index="1" data-path="/pages/home/home" bindtap="switchTab">
<view class="tab-ico">◉</view>
<text class="tab-txt">我的</text>
</view>
</view>