|
|
@ -167,8 +167,14 @@ namespace 齐越慧眼 |
|
|
|
var data = Newtonsoft.Json.JsonConvert.DeserializeObject<dynamic>(result); |
|
|
|
|
|
|
|
bool isSuccess = data.Success; |
|
|
|
bool isCanel = data.Data.isCanel; |
|
|
|
return (isSuccess, isCanel, data.Msg ?? ""); |
|
|
|
if (isSuccess) |
|
|
|
{ |
|
|
|
bool isCanel = data.Data.isCanel; |
|
|
|
return (isSuccess, isCanel, data.Msg ?? ""); |
|
|
|
} |
|
|
|
else { |
|
|
|
return (false, true, data.Msg ?? ""); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|