|
@@ -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";
|