uni.setLeftWindowStyle 动态设置 ,tabbar,navigationBar 显示不对
setRightWindowStyle
uni.setLeftWindowStyle({
"width": '450px',
"backgroundColor": "#f5f5f5"
});
如果 在 page.json 里设置 是能正常显示的
"leftWindow": {
"path": "pages/left_window/left_window.vue", // 指定 leftWindow 页面文件
"style": {
"width": "100px",
"backgroundColor": "#f00"
},
"matchMedia": {
"minWidth": 700 //生效条件,当窗口宽度大于768px时显示
}
},
"rightWindow": {
"path": "pages/right_window/right_window.vue", // 指定 leftWindow 页面文件
"style": {
"width": "100px",
"backgroundColor": "#ff0"
},
"matchMedia": {
"minWidth": 700 //生效条件,当窗口宽度大于768px时显示
}
}