赞
踩
toMpWeixin(){ uni.showModal({ title: "提示", content: "请到微信小程序支付", success(res) { if (res.confirm) { // #ifdef APP-PLUS var sweixin = null plus.share.getServices(res => { sweixin = res.find(i => i.id === 'weixin') if (sweixin) { sweixin.launchMiniProgram({ id: 'gh_xxxx', path: 'pages/index/index', type: 0 }, res => { console.log('res', JSON.stringify(res)) }, err => { console.log('err', JSON.stringify(err)) }) } else { // 没有获取到微信分享服务 uni.showToast({icon: 'none', title: "未安装微信,无法打开对应小程序"}) } }, err => { console.error(err,'err') // 获取分享服务列表失败 }); // #endif } else if (res.cancel) { console.log('用户点击取消'); } } }) // uni.showToast({icon: 'none', title: "请登录微信小程序使用微信支付"}) },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。