动态设置导航栏颜色,h5端赋值变量不起效果
uni.setNavigationBarColor({
frontColor: this.styleData.bodyFontColor,
backgroundColor: this.styleData.bgColor
});
换成直接写死得颜色值,API方法生效
uni.setNavigationBarColor({
frontColor: '#ffffff',
backgroundColor: '#ff0000'
});
这是什么鬼?
0 个回复