Files
teaching-feedback-assistant/custom-tab-bar/index.wxml
shay7sev 0a07538dce feat: establish teaching feedback mini program
Connect student profiles, defaults, and feedback records to the Rust API. Configure the WeChat AppID, custom tab bar, and local development workflow for version 0.1.0.
2026-07-15 15:36:51 +08:00

15 lines
383 B
Plaintext

<view class="tabbar" role="tablist">
<view
wx:for="{{tabItems}}"
wx:key="pagePath"
class="tab-item {{selected === index ? 'tab-item-active' : ''}}"
data-index="{{index}}"
data-path="{{item.pagePath}}"
bindtap="switchTab"
role="tab"
>
<text class="tab-glyph">{{item.glyph}}</text>
<text class="tab-label">{{item.text}}</text>
</view>
</view>