``` { //每一个标签首页都要有 "pages": [ "pages/index/index", "pages/news/news", "pages/demo/demo", "pages/logs/index", "pages/user/user", "pages/shop/shop" ], //控制页面样式 "window": { "navigationBarTitleText": "Demo", //首页标题 "navigationBarBackgroundColor": "#1e3a8a" //首页背景色 }, "tabBar": { "color":"#666", //文字颜色 "selectedColor":"#f60", 选中颜色 "backgroundColor":"#eee", 背景色 "borderStyle":"white", 边框横线颜色 "position":"bottom", "list": [ { "pagePath": "pages/index/index", 点击跳转页面 "text": "首页", 导航名称 "iconPath":"static/images/home1.png", 默认图案 "selectedIconPath": "static/images/home2.png" 选中图案 }, { "pagePath": "pages/news/news", "text": "新闻", "iconPath": "static/images/news1.png", "selectedIconPath": "static/images/news2.png" }, { "pagePath": "pages/user/user", "text": "用户", "iconPath": "static/images/user1.png", "selectedIconPath": "static/images/user2.png" } ] }, "networkTimeout": { "request": 10000, "downloadFile": 10000 }, "debug": true, 开启调试模式 "navigateToMiniProgramAppIdList": [ "wxe5f52902cf4de896" ] } ```