|
@@ -68,15 +68,15 @@ func (this *BaseAuthController) Prepare() {
|
|
|
return
|
|
|
}
|
|
|
var wxUser *models.WxUserItem
|
|
|
- if session.UserId > 0{
|
|
|
- tmpWxUser, tmpErr := services.GetWxUserItemByUserId(session.UserId,utils.WxPcPlatform)
|
|
|
+ if session.OpenId != ""{
|
|
|
+ tmpWxUser, tmpErr := services.GetWxUserItemByOpenId(session.OpenId)
|
|
|
wxUser = tmpWxUser
|
|
|
err = tmpErr
|
|
|
- }else if session.OpenId != ""{
|
|
|
- tmpWxUser, tmpErr := services.GetWxUserItemByOpenId(session.OpenId)
|
|
|
+ }else if session.UserId > 0{
|
|
|
+ tmpWxUser, tmpErr := services.GetWxUserItemByUserId(session.UserId,utils.WxPcPlatform)
|
|
|
wxUser = tmpWxUser
|
|
|
err = tmpErr
|
|
|
- }else{
|
|
|
+ }else {
|
|
|
this.JSON(models.BaseResponse{Ret: 408, Msg: "数据异常!", ErrMsg: "sesson is empty "}, false, false)
|
|
|
this.StopRun()
|
|
|
return
|