소스 검색

忘记密码逻辑修改,主账号表为准

lcl 1 년 전
부모
커밋
e78e4240d1
1개의 변경된 파일15개의 추가작업 그리고 8개의 파일을 삭제
  1. 15 8
      Areas/Api/Controllers/v1/MainServer/MerchantInfoController.cs

+ 15 - 8
Areas/Api/Controllers/v1/MainServer/MerchantInfoController.cs

@@ -811,17 +811,24 @@ namespace MySystem.Areas.Api.Controllers.v1
             }
             RedisDbconn.Instance.Clear("MobileCodeCheck:" + Mobile);
             Dictionary<string, object> Obj = new Dictionary<string, object>();
-            MerchantForMobile find = new MerchantForMobileService().Query(Mobile);
-            if (find == null)
+            // MerchantForMobile find = new MerchantForMobileService().Query(Mobile);
+            // if (find == null)
+            // {
+            //     return new AppResultJson() { Status = "-1", Info = "手机号不正确" };
+            // }
+            // MerchantInfo query = maindb.MerchantInfo.FirstOrDefault(m => m.Id == find.MerchantId);
+            // if (query != null)
+            // {
+            //     query.LoginPwd = function.MD532(LoginPwd); //登录密码
+            //     maindb.SaveChanges();
+            // }
+            MerchantLoginInfo query = maindb.MerchantLoginInfo.FirstOrDefault(m => m.LoginMobile == Mobile);
+            if (query == null)
             {
                 return new AppResultJson() { Status = "-1", Info = "手机号不正确" };
             }
-            MerchantInfo query = maindb.MerchantInfo.FirstOrDefault(m => m.Id == find.MerchantId);
-            if (query != null)
-            {
-                query.LoginPwd = function.MD532(LoginPwd); //登录密码
-                maindb.SaveChanges();
-            }
+            query.LoginPwd = function.MD532(LoginPwd); //登录密码
+            maindb.SaveChanges();
             return new AppResultJson() { Status = "1", Info = "", Data = Obj };
         }
         #endregion