123456789101112131415161718192021222324252627282930313233343536 |
- {
- "pages": [
- "pages/auth/login",
- "pages/homepage/index",
- "pages/auth/register",
- "pages/auth/forgot",
- "pages/personalInfo/index"
- ],
- "window": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#999",
- "selectedColor": "#007AFF",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [
- {
- "pagePath": "pages/homepage/index",
- "text": "首页",
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/home-active.png"
- },
- {
- "pagePath": "pages/personalInfo/index",
- "text": "我的",
- "iconPath": "static/tabbar/personal.png",
- "selectedIconPath": "static/tabbar/personal-active.png"
- }
- ]
- },
- "usingComponents": {}
- }
|