<template>
<view>
<button @click="nav">跳转小程序</button>
</view>
</template>
<script>
export default {
data() {
return {
sweixin: 'weixin'
}
},
onl oad() {
var that = this
// #ifdef APP-PLUS
plus.share.getServices(function(s) {
for (var i = 0; i < s.length; i++) {
var t = s[i];
if (t.id == 'weixin') {
that.sweixin = t;
}
}
}, function(e) {
console.log("获取分享服务列表失败:" + e.message);
});
//#endif
},
methods: {
nav() {
var n = this;
console.log('n ===== ', n.sweixi)
//#ifdef APP-PLUS
console.log('sweixin ===== ', n.sweixin);
n.sweixin ? n.sweixin.launchMiniProgram({
id: 'gh_bdad127a996f' // 要修改
}) : plus.nativeUI.alert('当前环境不支持微信操作!');
//#endif
}
}
}
</script>
相关文章
- 01-04为什么py2app .app比同一个python程序需要更长的时间才能启动?
- 01-04跳坑 小程序swiper组件 轮播图片 右边空白问题
- 01-04如何在启动处理程序完成时显式停止Google App Engine动态后端?
- 01-04支付宝原生应用采用uni-app重写兼容微信小程序遇到的兼容性问题
- 01-04uni-app 小程序数据列表进行分页
- 01-04Winform读写App.config文件以及重启程序
- 01-04Windows Store App 中挂起时,程序奔溃的问题
- 01-04uni-app小程序下载图片
- 01-04文本消息时,支持插入跳小程序的文字链
- 01-04小程序版本更新(uni-app)