// 打开微信小程序
onOpenWechat(e){
plus.share.getServices(res => {
let sweixin = null;
for(let val of res){
if(val.id === 'weixin'){
sweixin = val
}
}
/** 以此为例子 显示跳转引导页
* 'index_4'
* index 跳小程序企业首页
* 4 企业id
**/
if(sweixin != null){
sweixin.launchMiniProgram({
id : e.original_id, // 小程序id
path: 'pages/login/guide?scene=index_' + e.company_id, // 该路径需是小程序线上发布能找到的!
})
}else{
uni.showToast({
title: '当前环境不支持打开微信小程序',
icon : 'none'
})
}
})
}
uniapp 移动应用端,uniapp-app端,跳转指定小程序
最新推荐文章于 2024-08-29 11:38:03 发布