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: "我的"
}]
}
网友评论