plus.share.getServices(res => {
let tweixin = null;
tweixin = res.find(i => i.id === 'weixin')
if (tweixin) {
// 分享跳转到微信小程序
tweixin.launchMiniProgram({
id: "gh_...",//微信小程序原生id
path:"pages/index/index", // 打开小程序的页面路径,不传默认跳转首页
type: 0 // 微信小程序版本类型,可取值: 0-正式版; 1-测试版; 2-体验版。 默认值为0。
})
} else {
uni.showToast({
title: '请安装微信',
icon: 'none'
})
}
}, err => {
console.log("分享失败");
});