Commit b95de87b by dong

fix20230721

parent 8b9d0ed0
...@@ -226,8 +226,8 @@ def login_bypwd(): ...@@ -226,8 +226,8 @@ def login_bypwd():
# 参数获取与校验 # 参数获取与校验
req_dict = request.get_json() req_dict = request.get_json()
# 解密 # 解密
# param = req_dict.get("param") # 加密参数 param = req_dict.get("param") # 加密参数
# req_dict = json.loads(decrypt(param)) req_dict = json.loads(decrypt(param))
mobile = req_dict.get('mobile') mobile = req_dict.get('mobile')
password = req_dict.get('password') password = req_dict.get('password')
# 校验参数完整性 # 校验参数完整性
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment