1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
| { //页面路径配置,未设置root则path默认完整路径 "pages": [ { "path": "pages/index/index", "style": { "navigationBarTitleText": "首页", "enablePullDownRefresh": true } } ], //二级页面,设置了root根文件路径,则path可以简写 "subPackages": [{ "root": "pages/test-sub", "pages": [ { "path": "login/index", "style": { "navigationBarTitleText": "登录" } } ] }], //全局样式配置 "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#F8F8F8", "backgroundColor": "#F8F8F8" }, "tabBar": { //tab样式和选中后效果 "color": "#7A7E83", "selectedColor": "#2BD3DE", "borderStyle": "black", "backgroundColor": "#F8F8F8", //tab页面配置,包括图标路径,tab名称、路径 "list": [{ "pagePath": "pages/index/index", "iconPath": "static/农场_24种子.png", "selectedIconPath": "static/农场_31花草.png", "text": "首页" }, { "pagePath": "pages/user/index", "iconPath": "static/农场_36稻草人.png", "selectedIconPath": "static/农场_28蜜蜂.png", "text": "个人中心" }, { "pagePath": "pages/test/index", "iconPath": "static/农场_36稻草人.png", "selectedIconPath": "static/农场_28蜜蜂.png", "text": "测试页面" } ] } }
|