Authored by 郭成尧

Merge branch 'feature/h5mnprblmwbvw' into release/6.5.2

... ... @@ -23,12 +23,12 @@ class LinkHandle {
* 跳小程序原生页面
*/
goMiniProgram(path) {
if (wx) {
if (typeof wx !== 'undefined') {
wx.miniProgram.navigateTo({
url: path
});
} else {
console.error('no wx object');
console.log('wx is undefined');
}
}
... ...