因为小程序的机制问题,首页的tabBar第一个导航必须是首页
json
"pages": [ "pages/index/index", #json文件不能加备注,这个是首页 "pages/show/show" ], "tabBar": { "list": [{ "pagePath": "pages/index/index", #json文件不能加备注,这个必须是首页的url "text": "index" }, { "pagePath": "pages/show/show", "text": "show" }] },