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.
15 lines
383 B
Plaintext
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>
|