|
@@ -66,7 +66,7 @@ func (this *UserCommonController) Login() {
|
|
|
br.ErrMsg = "Password 为空"
|
|
|
return
|
|
|
}
|
|
|
- userByps, err := models.GetWxUserItemByUserMobile(mobile)
|
|
|
+ userByps, err := models.GetWxUserItemByMobile(mobile)
|
|
|
if err != nil {
|
|
|
br.Msg = "获取信息失败"
|
|
|
br.ErrMsg = "获取信息失败,Err:" + err.Error()
|
|
@@ -2004,7 +2004,7 @@ func (this *UserCommonController) SetPass() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- user, err := models.GetWxUserItemByUserMobile(mobile)
|
|
|
+ user, err := models.GetWxUserItemByMobile(mobile)
|
|
|
if err != nil {
|
|
|
br.Msg = "获取信息失败"
|
|
|
br.ErrMsg = "获取信息失败,Err:" + err.Error()
|
|
@@ -2155,7 +2155,7 @@ func (this *UserCommonController) ReSetPass() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- user, err := models.GetWxUserItemByUserMobile(mobile)
|
|
|
+ user, err := models.GetWxUserItemByMobile(mobile)
|
|
|
if err != nil {
|
|
|
br.Msg = "获取信息失败"
|
|
|
br.ErrMsg = "获取信息失败,Err:" + err.Error()
|