问题描述 :项目首页有个tabbar 三个模块默认app.json 配置了统一的window{}
*Android 系统正常 IOS有以下异常
项目启动加载首页 onload /onshow 重新调用wx.setNavigationBarTitle 配置导航条标题 默认只有第一个tab 也就是首页有效 其他的tab 均无效 之展示 app.json的默认配置
- app.json
“window”: {
“navigationBarTextStyle”: “white”,
“navigationBarTitleText”: “xxxxx”,
“navigationBarBackgroundColor”: “#FFA500”
},
- tab页面
onShow: function () {
var that = this;
wx.setNavigationBarTitle({
title: “购物车111”,
success: function(){
console.log("---------------");
}
})
this.showCartList();
},