onShow() {
uni.showModal({
content: '数量:'+this.type+this.openLocationCount
})
if(this.type == 'openLocation'){
this.openLocationCount++
if(this.openLocationCount > 1){
uni.navigateBack()
}else{
setTimeout(()=>{
this.openLocation(this.shopInfo)
},150)
}
}
},
一进入页面再onShow打开uni.openLocation
打开地图后,返回就不再触发onShow了
在小程序上面可以,APP端就不行
0 个回复