Files
teaching-feedback-assistant/app.json
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

32 lines
886 B
JSON

{
"pages": [
"pages/feedback/index",
"pages/students/index",
"pages/records/index",
"pages/profile/index",
"pages/defaults/index"
],
"window": {
"navigationBarBackgroundColor": "#F4F8FE",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "教学反馈助手",
"backgroundColor": "#F4F8FE",
"backgroundTextStyle": "light"
},
"tabBar": {
"custom": true,
"color": "#7B8796",
"selectedColor": "#2B67E8",
"backgroundColor": "#FFFFFF",
"borderStyle": "white",
"list": [
{ "pagePath": "pages/feedback/index", "text": "反馈生成" },
{ "pagePath": "pages/students/index", "text": "学生档案" },
{ "pagePath": "pages/records/index", "text": "反馈记录" },
{ "pagePath": "pages/profile/index", "text": "我的" }
]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}