computed: {
develop() {
let _path = 'develop'; // 默认 develop开发环境
// #ifdef MP-WEIXIN
const accountInfo = wx.getAccountInfoSync();
_path = accountInfo.miniProgram.envVersion;
// #endif
return _path;
}
wx.navigateToMiniProgram({
appId: 'wx826073b21c5b9dfc',
path: `pages/start-up/index`,
envVersion: this.develop
})
原文链接:https://juejin.cn/post/7338011132383330344 作者:蓝色海岛