// 尝试打开微信小程序
generateScheme({
path: '/pages/contactList/contactList',
query: 'phone=' + userInfo.mobile,
envVersion: 'trial', // 正式版为"release",体验版为"trial",开发版为"develop"
}).then(res => {
if (res.code == 0) {
window.location.href = res.data
} else {
uni.showToast({
title: res.msg,
icon: 'none'
})
}
}).catch(err => {
uni.showToast({
title: err.msg,
icon: 'none'
})
})
体验版 需要提交申请才可以访问,并且数量有限