美文网首页
微信应用号tabBar不显示

微信应用号tabBar不显示

作者: Programmer客栈 | 来源:发表于2017-01-18 17:57 被阅读0次

    1.list中的第一个tab的地址必须定义在pages 中

    "pages":["pages/Intent/Intent","pages/Services/Services","pages/Profile/Profile"],

    2.list 中的 pagePath 必须是正确地址,如果出现不显示的问题,99%是因为地址不正确

    "selectedIconPath":"pages/Image/ic_tab_profile_select.png",#此处也错了,此处pages该有斜杠/"iconPath":"pages/Image/ic_tab_profile_normal.png","pagePath":"/pages/Profile/Profile",#如此处错了pages前面不该有斜杠/"text":"我的"

    正确写法为:

    "list": [{"selectedIconPath":"/pages/Image/ic_tab_buycar_select.png","iconPath":"/pages/Image/ic_tab_buycar_normal.png","pagePath":"pages/Intent/Intent","text":"购车"},    ...]

    项目结构为

    图片路径多了少了斜杠

    相关文章

      网友评论

          本文标题:微信应用号tabBar不显示

          本文链接:https://www.haomeiwen.com/subject/gvrbbttx.html