|
|
@ -57,74 +57,80 @@ export default { |
|
|
|
account, |
|
|
|
password, |
|
|
|
brand_id, |
|
|
|
isSkipCheck: true |
|
|
|
}, |
|
|
|
isDefaultGet: false |
|
|
|
}) |
|
|
|
.then(res=>{ |
|
|
|
if(res.data.code == 0){ |
|
|
|
util.showNone('登陆成功!'); |
|
|
|
uni.setStorageSync('loginInfo', res.data.data || {}); |
|
|
|
setTimeout(_=>{ |
|
|
|
util.routeTo(`/pages/index/index`, 'rL'); |
|
|
|
}, 1200) |
|
|
|
console.warn(res); |
|
|
|
}else{ |
|
|
|
util.showNone(res.data.message || '操作失败!'); |
|
|
|
} |
|
|
|
console.log(res); |
|
|
|
}) |
|
|
|
.catch(util.hideLoad) |
|
|
|
}, |
|
|
|
|
|
|
|
async submitBtn(userRes){ |
|
|
|
try{ |
|
|
|
util.showLoad(); |
|
|
|
if(!userRes.detail.userInfo){ |
|
|
|
util.hideLoad(); |
|
|
|
return util.showNone('获取用户信息失败!请稍后重试'); |
|
|
|
} |
|
|
|
// async submitBtn(userRes){ |
|
|
|
// try{ |
|
|
|
// util.showLoad(); |
|
|
|
// if(!userRes.detail.userInfo){ |
|
|
|
// util.hideLoad(); |
|
|
|
// return util.showNone('获取用户信息失败!请稍后重试'); |
|
|
|
// } |
|
|
|
|
|
|
|
let loginRes = await uniLogin(); |
|
|
|
// let loginRes = await uniLogin(); |
|
|
|
|
|
|
|
if(!loginRes.code){ |
|
|
|
util.hideLoad(); |
|
|
|
return util.showNone('获取登陆凭证失败!稍后重试'); |
|
|
|
} |
|
|
|
let userInfo = userRes.detail || {}; |
|
|
|
console.log(userRes) |
|
|
|
let { formData } = this; |
|
|
|
servers.post({ |
|
|
|
url: API.WechatMiniApplogin, |
|
|
|
data: { |
|
|
|
appid: APPID, |
|
|
|
code: loginRes.code, |
|
|
|
encryptedData: userInfo.encryptedData, |
|
|
|
// is_details: 1, |
|
|
|
// 后端解密错误,直接传用户信息 |
|
|
|
user_info: userInfo.userInfo, |
|
|
|
user_raw_data: userInfo.rawData, |
|
|
|
...userInfo.userInfo, |
|
|
|
username: formData.account, |
|
|
|
password: formData.password, |
|
|
|
brand_id: formData.brand_id, |
|
|
|
}, |
|
|
|
isDefaultGet: false, |
|
|
|
}) |
|
|
|
.then(res=>{ |
|
|
|
util.hideLoad(); |
|
|
|
let _data = res.data || {}; |
|
|
|
if(_data.code == 0){ |
|
|
|
util.showNone(_data.message || '操作成功!'); |
|
|
|
|
|
|
|
uni.setStorageSync('token',_data.data); |
|
|
|
setTimeout(_=>{ |
|
|
|
util.routeTo(`/pages/index/index`, 'rL'); |
|
|
|
}, 1200); |
|
|
|
}else{ |
|
|
|
util.showNone(_data.message || '操作失败!'); |
|
|
|
} |
|
|
|
// if(!loginRes.code){ |
|
|
|
// util.hideLoad(); |
|
|
|
// return util.showNone('获取登陆凭证失败!稍后重试'); |
|
|
|
// } |
|
|
|
// let userInfo = userRes.detail || {}; |
|
|
|
// console.log(userRes) |
|
|
|
// let { formData } = this; |
|
|
|
// servers.post({ |
|
|
|
// url: API.WechatMiniApplogin, |
|
|
|
// data: { |
|
|
|
// appid: APPID, |
|
|
|
// code: loginRes.code, |
|
|
|
// encryptedData: userInfo.encryptedData, |
|
|
|
// // is_details: 1, |
|
|
|
// // 后端解密错误,直接传用户信息 |
|
|
|
// user_info: userInfo.userInfo, |
|
|
|
// user_raw_data: userInfo.rawData, |
|
|
|
// ...userInfo.userInfo, |
|
|
|
// username: formData.account, |
|
|
|
// password: formData.password, |
|
|
|
// brand_id: formData.brand_id, |
|
|
|
// }, |
|
|
|
// isDefaultGet: false, |
|
|
|
// }) |
|
|
|
// .then(res=>{ |
|
|
|
// util.hideLoad(); |
|
|
|
// let _data = res.data || {}; |
|
|
|
// if(_data.code == 0){ |
|
|
|
// util.showNone(_data.message || '操作成功!'); |
|
|
|
// console.warn(_data) |
|
|
|
// uni.setStorageSync('loginInfo', _data.data); |
|
|
|
// setTimeout(_=>{ |
|
|
|
// util.routeTo(`/pages/index/index`, 'rL'); |
|
|
|
// }, 1200); |
|
|
|
// }else{ |
|
|
|
// util.showNone(_data.message || '操作失败!'); |
|
|
|
// } |
|
|
|
|
|
|
|
}) |
|
|
|
.catch(util.hideLoad) |
|
|
|
}catch(err){ |
|
|
|
util.hideLoad(); |
|
|
|
console.warn('login err', err); |
|
|
|
} |
|
|
|
}, |
|
|
|
// }) |
|
|
|
// .catch(util.hideLoad) |
|
|
|
// }catch(err){ |
|
|
|
// util.hideLoad(); |
|
|
|
// console.warn('login err', err); |
|
|
|
// } |
|
|
|
// }, |
|
|
|
toWebView(){ |
|
|
|
util.routeTo(`/pages/web_view/web_view`,'rL'); |
|
|
|
} |
|
|
|