123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- }, {
- "path": "pages/edu/edu",
- "style": {
- "navigationBarTitleText": "培训",
- "usingComponents": {
- "painter": "/wxcomponents/painter/painter"
- }
- }
- }, {
- "path": "pages/mine/mine",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#A0A2BE",
- "selectedColor": "#FF4330",
- "list": [{
- "pagePath": "pages/index/index",
- "text": "首页",
- "iconPath": "./static/home.png",
- "selectedIconPath": "./static/home_check.png"
- },
- {
- "pagePath": "pages/edu/edu",
- "text": "培训",
- "iconPath": "./static/edu.png",
- "selectedIconPath": "./static/edu_check.png"
- },
- {
- "pagePath": "pages/mine/mine",
- "text": "我的",
- "iconPath": "./static/mine.png",
- "selectedIconPath": "./static/mine_check.png"
- }
- ]
- }
- }
|