//pages.json
"app-plus": {
"scrollIndicator": "none",
"subNVues":[{
"id":"zzhPopup",
"path":"pages/index/subNvue/zzh-popUp",
// "type":"popup",
"style":{
"position":"mock",
"width":"100%",
"height":"100%",
"margin":"auto",
"background":"transparent",
"mask":"rgba(0,0,0,0.5)"
}
}]
}
//zzhPopup.nvue
onReady() {
const subNvue = uni.getSubNVueById('zzhPopup')
subNvue.show("fade-in",600,()=>{
console.log('弹窗出来了!!!')
})
console.log(subNvue)
},
beforeCreate(){
uni.getCurrentSubNVue().addEventListener("hide", function() {
console.log("subNVue子窗体已隐藏!")
});
},