|
@@ -127,8 +127,9 @@ export default {
|
|
|
async getPhoneNumber({detail}){
|
|
|
if(!detail.encryptedData||!detail.iv) return
|
|
|
const res=await apiGetWechatPhone({
|
|
|
- encryptedData:detail.encryptedData,
|
|
|
- iv:detail.iv,
|
|
|
+ encryptedData:detail.encryptedData||'',
|
|
|
+ iv:detail.iv||'',
|
|
|
+ code:detail.code||'',
|
|
|
isBind:true,
|
|
|
})
|
|
|
if(res.code===200){
|