1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- },
- {
- "path": "pages/taBar/one/one",
- "style": {
- "navigationBarTitleText": "我得分页1"
- }
- },
-
- {
- "path": "pages/taBar/three/three",
- "style": {
- "navigationBarTitleText": "我得分页3"
- }
- }
-
- ],
- "tabBar": {
- "color": "#C0C4CC",
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "uni-app"
-
- },
- {
- "pagePath": "pages/taBar/one/one",
- "text": "二页"
- },
-
- {
- "pagePath": "pages/taBar/three/three",
- "text": "三页"
- }
- ]
- },
-
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- }
- }
|