You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.9 KiB
55 lines
1.9 KiB
<view class="tab-bar" wx:if="{{show}}">
|
|
<!-- 左侧按钮组 -->
|
|
<view class="tab-bar-left">
|
|
<view class="tab-bar-item {{selected === 'index' ? 'active' : ''}}"
|
|
data-path="pages/index/index"
|
|
data-key="index"
|
|
bindtap="switchTab">
|
|
<view class="tab-bar-icon">
|
|
<view class="tab-bar-badge" wx:if="{{badges['index']}}">{{badges['index']}}</view>
|
|
</view>
|
|
<view class="tab-bar-text">首页</view>
|
|
</view>
|
|
|
|
<view class="tab-bar-item {{selected === 'buyer' ? 'active' : ''}}"
|
|
data-path="pages/buyer/index"
|
|
data-key="buyer"
|
|
bindtap="switchTab">
|
|
<view class="tab-bar-icon">
|
|
<view class="tab-bar-badge" wx:if="{{badges['buyer']}}">{{badges['buyer']}}</view>
|
|
</view>
|
|
<view class="tab-bar-text">商城</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 鸡蛋估价按钮 -->
|
|
<view class="tab-bar-center" bindtap="goToEvaluatePage">
|
|
<view class="egg-button">
|
|
<view class="egg-icon">🥚</view>
|
|
<view class="egg-text">估</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 右侧按钮组 -->
|
|
<view class="tab-bar-right">
|
|
<view class="tab-bar-item {{selected === 'favorites' ? 'active' : ''}}"
|
|
data-path="pages/favorites/index"
|
|
data-key="favorites"
|
|
bindtap="switchTab">
|
|
<view class="tab-bar-icon">
|
|
<view class="tab-bar-badge" wx:if="{{badges['favorites']}}">{{badges['favorites']}}</view>
|
|
</view>
|
|
<view class="tab-bar-text">收藏</view>
|
|
</view>
|
|
|
|
<view class="tab-bar-item {{selected === 'profile' ? 'active' : ''}}"
|
|
data-path="pages/profile/index"
|
|
data-key="profile"
|
|
bindtap="switchTab">
|
|
<view class="tab-bar-icon">
|
|
<view class="tab-bar-badge" wx:if="{{badges['profile']}}">{{badges['profile']}}</view>
|
|
</view>
|
|
<view class="tab-bar-text">我</view>
|
|
</view>
|
|
</view>
|
|
</view>
|