微信小程序-tabbar背景色在苹果系统上异常

2019-04-23  本文已影响0人  苏本的书柜
image.png
tabBar: {
      borderStyle: "white",
      backgroundColor: "white",//在苹果上异常
      selectedColor: "#1781ff",
      color: "#666666",
      list: [{
        pagePath: "pages/news/index",
        iconPath: "assets/Tab/tab_home_gray.png",
        selectedIconPath: "assets/Tab/tab_home-pre.png",
        text: "今日简讯"
      }, {
        pagePath: "pages/my/index",
        selectedIconPath: "assets/Tab/tab_my_pre.png",
        iconPath: "assets/Tab/tab_my_gray.png",
        text: "我的"
      }]

修改后,需要改成#ffffff,必须是6位,不能简写成为3位

tabBar: {
      borderStyle: "white",
      backgroundColor: "#ffffff",
      selectedColor: "#1781ff",
      color: "#666666",
      list: [{
        pagePath: "pages/news/index",
        iconPath: "assets/Tab/tab_home_gray.png",
        selectedIconPath: "assets/Tab/tab_home-pre.png",
        text: "今日简讯"
      }, {
        pagePath: "pages/my/index",
        selectedIconPath: "assets/Tab/tab_my_pre.png",
        iconPath: "assets/Tab/tab_my_gray.png",
        text: "我的"
      }]
    }

上一篇下一篇

猜你喜欢

热点阅读