|
@@ -36,6 +36,10 @@ func (this *AdminCommon) Login() {
|
|
}
|
|
}
|
|
|
|
|
|
adminWx, err := services.BindWxUser(this.Session.OpenId, req.Username, req.Password, utils.WxPlatform)
|
|
adminWx, err := services.BindWxUser(this.Session.OpenId, req.Username, req.Password, utils.WxPlatform)
|
|
|
|
+ if err != nil {
|
|
|
|
+ this.FailWithMessage("登录失败", "登录失败,Err:"+err.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
err = h5_admin_session.UpdateSession(this.Session.SessionId, adminWx.AdminId, time.Now().AddDate(0, 0, 90))
|
|
err = h5_admin_session.UpdateSession(this.Session.SessionId, adminWx.AdminId, time.Now().AddDate(0, 0, 90))
|
|
if err != nil {
|
|
if err != nil {
|
|
this.FailWithMessage("登录失败", "变更session信息失败,Err:"+err.Error())
|
|
this.FailWithMessage("登录失败", "变更session信息失败,Err:"+err.Error())
|