"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "",
"navigationStyle": "custom",
"enablePullDownRefresh": false,
"navigationBarBackgroundColor": "#87C349",
"backgroundColor": "#ffffff",
"titleNView":false,
"app-plus": {
"bounce": "none" ,
"safearea": {
"bottom": "none"
},
"subNVues":[{
"id":"popup",
"path": "pages/popup/popup.nvue", // nvue 路径
"style": { //webview style 子集,文档可暂时开放出来位置,大小相关配置
"position": "popup", //除 popup 外,其他值域参考 5+ webview position 文档
"margin":"auto",
"width": "0",
"height": "0"
// "background": "transparent"
}
}]
}
},
var subNVue = uni.getSubNVueById('popup');
subNVue.show('fade-in',200,()=>{
console.log(456)
subNVue.setStyle({
"position": "absolute", //除 popup 外,其他值域参考 5+ webview position 文档
"width": "100vw",
"height": "100vh",
"background": "transparent"
})
})