Bootstrap

app 跳转小程序

<template>
    <view>
        <button @click="nav">跳转小程序</button>
    </view>
</template>

<script>
    export default {
        data() {
            return {
                sweixin: 'weixin'
            }
        },
        onLoad() {
            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', // 要修改
                    path = "/pages/index/index?sharetype=share&id=" + id
                }) : plus.nativeUI.alert('当前环境不支持微信操作!');
                //#endif
            }

        }
    }
</script>

悦读

道可道,非常道;名可名,非常名。 无名,天地之始,有名,万物之母。 故常无欲,以观其妙,常有欲,以观其徼。 此两者,同出而异名,同谓之玄,玄之又玄,众妙之门。

;