Browse Source

设置商户费率需要手机验证码

lcl 3 weeks ago
parent
commit
f0d8fb0df4
2 changed files with 26 additions and 0 deletions
  1. 20 0
      Areas/Api/Controllers/Main/MerchantAddInfoController.cs
  2. 6 0
      Util/RedisDbconn.cs

+ 20 - 0
Areas/Api/Controllers/Main/MerchantAddInfoController.cs

@@ -796,6 +796,26 @@ namespace MySystem.Areas.Api.Controllers.v1
             JsonData data = JsonMapper.ToObject(value);
             string SettleFee = data["SettleFee"].ToString(); //分类
             int Id = int.Parse(function.CheckInt(data["Id"].ToString()));
+            string Mobile = data["Mobile"].ToString(); //手机号
+            string MobileCode = data["MobileCode"].ToString(); //短信验证码
+            if (string.IsNullOrEmpty(data["Mobile"].ToString()))
+            {
+                return Json(new AppResultJson() { Status = "-1", Info = "请填写手机号" });
+            }
+            if (data["Mobile"].ToString().Length > 11)
+            {
+                return Json(new AppResultJson() { Status = "-1", Info = "手机号最多11个字符" });
+            }
+            MobileCodeCheck mobilecheck = RedisDbconn.Instance.Get<MobileCodeCheck>("MobileCodeCheck:" + Mobile);
+            if (mobilecheck == null)
+            {
+                return Json(new AppResultJson() { Status = "-1", Info = "短信验证码不正确" });
+            }
+            if (mobilecheck.CheckCode != MobileCode)
+            {
+                return Json(new AppResultJson() { Status = "-1", Info = "短信验证码不正确" });
+            }
+            RedisDbconn.Instance.Delete("MobileCodeCheck:" + Mobile);
             if(SettleFee == "0.25") SettleFee = "0.25";
             else if(SettleFee == "0.30") SettleFee = "0.30";
             else SettleFee = "0.38";

+ 6 - 0
Util/RedisDbconn.cs

@@ -206,6 +206,12 @@ namespace MySystem
             csredis.Del(keys);
         }
 
+        public void Delete(string key)
+        {
+            string[] keys = new string[] { key };
+            csredis.Del(keys);
+        }
+
         public string[] GetKeys(string pattern)
         {
             string[] keys = csredis.Keys(pattern);