小程序
小游戏
企业微信
微信支付
扫描小程序码分享
https://developers.weixin.qq.com/s/s1jq4mme7XVn
改成其它都能显示
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你的代码没有指定 entryPagePath ,默认 pages 数组当中的第一项(pages/index/index)为小程序的首页,因为这个页面不是tabBar页面,所以就没有显示底部导航栏。
解决方法:将 pages/topic/index 移到第一项,或者指定 entryPagePath 为 pages/topic/index ,使这个页面为小程序首页即可。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
{ "pages":[ "pages/index/index", "pages/topic/index", "pages/user/index" ], "window":{ "backgroundTextStyle":"light", "navigationBarBackgroundColor": "#fff", "navigationBarTitleText": "我的小程序", "navigationBarTextStyle":"black" }, "tabBar":{ "color" : "#808080", "selectedColor" : "#629add", "backgroundColor" : "#ffffff", "list" : [ { "pagePath" : "pages/user/index", "text" : "出题", "iconPath" : "imgs/printer.png", "selectedIconPath" : "imgs/printe-a.png" }, { "pagePath" : "pages/topic/index", "text" : "我的", "iconPath" : "imgs/mine.png", "selectedIconPath" : "imgs/mine-a.png" } ] }, "style": "v2", "sitemapLocation": "sitemap.json" } 代码如上
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你的代码没有指定 entryPagePath ,默认 pages 数组当中的第一项(pages/index/index)为小程序的首页,因为这个页面不是tabBar页面,所以就没有显示底部导航栏。
解决方法:将 pages/topic/index 移到第一项,或者指定 entryPagePath 为 pages/topic/index ,使这个页面为小程序首页即可。
{ "pages":[ "pages/index/index", "pages/topic/index", "pages/user/index" ], "window":{ "backgroundTextStyle":"light", "navigationBarBackgroundColor": "#fff", "navigationBarTitleText": "我的小程序", "navigationBarTextStyle":"black" }, "tabBar":{ "color" : "#808080", "selectedColor" : "#629add", "backgroundColor" : "#ffffff", "list" : [ { "pagePath" : "pages/user/index", "text" : "出题", "iconPath" : "imgs/printer.png", "selectedIconPath" : "imgs/printe-a.png" }, { "pagePath" : "pages/topic/index", "text" : "我的", "iconPath" : "imgs/mine.png", "selectedIconPath" : "imgs/mine-a.png" } ] }, "style": "v2", "sitemapLocation": "sitemap.json" } 代码如上