this.sweixin ? this.sweixin.launchMiniProgram({
path: 'pages/home/wxpayment?index='+ obg, //跳转小程序页面路径
type: 0,//可取值: 0-正式版; 1-测试版; 2-体验版。 默认值为0。
id: 'gh_6c67277407fb' //小程序的原始id
}) : plus.nativeUI.alert('当前环境不支持微信操作!');
onload里面加入获取分享服务
// #ifdef APP-PLUS
plus.share.getServices((s)=> {
var shares = {};
for (var i = 0; i < s.length; i++) {
var t = s[i];
shares[t.id] = t;
}
var sweixin = shares['weixin'];
this.sweixin=sweixin
// alert(this.sweixin)
}, function(e) {
console.log("获取分享服务列表失败:" + e.message);
// alert("获取分享服务列表失败:" + e.message)
});
//#endif