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.
This commit is contained in:
14
custom-tab-bar/index.wxml
Normal file
14
custom-tab-bar/index.wxml
Normal file
@@ -0,0 +1,14 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user