showsub(){
let subNVue = uni.getSubNVueById('share');
// 打开 nvue 子窗体
subNVue.show('slide-in-left', 300, function() {
// console.log("subNVue.show")
// 在 subNVue/vue 页面触发事件
});
},
showsubmap(){
let subNVue = uni.getSubNVueById('map');
// 打开 nvue 子窗体
subNVue.show('slide-in-left', 300, function() {
// console.log("subNVue.show")
// 在 subNVue/vue 页面触发事件
});
},
Page.js
{
"pages": [{
"path": "pages/index",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"app-plus": {
"subNVues": [{
"id": "share",
"path": "pages/subnvue/share",
"type": "popup",
"style": {
"margin": "auto",
"width": "600rpx",
"height": "280rpx",
"background": "transparent"
}
},
{
"id": "map",
"path": "pages/subnvue/map",
"type": "popup",
"style": {
"margin": "auto",
"width": "700rpx",
"height": "280rpx",
"background": "transparent"
}
}
]
}
}
} ,{
"path" : "pages/tab2",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
,{
"path" : "pages/page3”,//页面3有配置就能显示出遮罩层,
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"app-plus": {
"subNVues": [{
"id": "share3",
"path": "pages/subnvue/share",
"type": "popup",
"style": {
"margin": "auto",
"width": "600rpx",
"height": "280rpx",
"background": "transparent"
}
},
{
"id": "map3",
"path": "pages/subnvue/map",
"type": "popup",
"style": {
"margin": "auto",
"width": "700rpx",
"height": "280rpx",
"background": "transparent"
}
}
]
}
}
}
,{
"path" : "pages/page4",//页面4没有配置遮罩层丢失,
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
],
"tabBar": {
"selectedColor": "#F58A33",
"iconfontSrc": "static/iconfont.ttf",
"list": [{
"text": "首页",
"pagePath": "pages/index",
"iconfont": {
"text": "\ue965",
"selectedText": "\ue965",
"fontSize": "20px",
"color": "#7A7E83",
"selectedColor": "#F58A33"
}
},
{
"text": "美食",
"pagePath": "pages/tab2",
"iconfont": {
"text": "\ue673",
"selectedText": "\ue673",
"fontSize": "20px",
"color": "#7A7E83",
"selectedColor": "#F58A33"
}
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {}
}