const getphonenumber : UniHelper.ButtonOnGetphonenumber = async (ev) => {
if (ev.detail.errMsg != "getPhoneNumber:ok") {
uni.showToast({
icon: 'none',
title: '参数错误',
})
} else {
await checkedAgreePrivacy()
const { encryptedData, iv } = ev.detail
const res = await wx.login()
uni.showLoading({ title: '正在登录...' })
const { send: sendAuthBindPhone } = useRequest(authBindPhone, { immediate: false });
sendAuthBindPhone({
phoneCode: ev.detail.code,
key: authKey.value,
encryptedData: encryptedData,
iv: iv,
code: res.code
}).then(async result => {
useAuthStore().setToken(result.token);
await useUserStore().setUserInfo(result)
await useUserStore().getUserInfo()
setTimeout(() => {
uni.hideLoading();
loginSuccess(result);
})
})
}
}
是不是没有配置请求域名
那就打开调试模式呗,还不想打开调试,还想请求,那就配置合法域名并配置SSL证书呗
没配置合法域名,你代码都变量也不能运行,自己调试看看吧