|
|
@@ -3280,6 +3280,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
|
|
|
string result = reader.ReadToEnd();
|
|
|
JsonData jsonObj = JsonMapper.ToObject(result);
|
|
|
+ result = jsonObj["data"]["desc"].ToString();
|
|
|
function.WriteLog(result, "验证三要素日志");
|
|
|
function.WriteLog("\n\n", "验证三要素日志");
|
|
|
return result;
|
|
|
@@ -3372,9 +3373,11 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
|
|
|
string result = reader.ReadToEnd();
|
|
|
JsonData jsonObj = JsonMapper.ToObject(result);
|
|
|
+ result = jsonObj["data"]["desc"].ToString();
|
|
|
function.WriteLog(result, "验证四要素日志");
|
|
|
function.WriteLog("\n\n", "验证四要素日志");
|
|
|
- return result;
|
|
|
+ return result;
|
|
|
+
|
|
|
}
|
|
|
#endregion
|
|
|
|