{ "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{ "path": "pages/index/index", "style": { "navigationBarTitleText": "首页"
}
},
{ "path": "pages/mine/mine", "style": { "navigationBarTitleText": "我的"
}
}
], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#F8F8F8", "backgroundColor": "#F8F8F8"
}, "tabBar": { "color": "#333333", "backgroundColor": "#F8F8F8", "selectedColor": "#00B26A", "list": [{ "pagePath": "pages/index/index", "text": "首页", // "iconPath": "static/images/tabbar/home.png",
// "selectedIconPath": "static/images/tabbar/home-act.png"
},
{ "pagePath": "pages/mine/mine", "text": "我的", // "iconPath": "static/images/tabbar/mine.png", #默认展示图标
// "selectedIconPath": "static/images/tabbar/mine_selected.png" #选中以后图标
}
]
}
}