Commit 489da93f authored by Sandy's avatar Sandy

许可证无法提交bug

parent dfe8fd7b
...@@ -653,6 +653,7 @@ static NSString *headerProblemItemID = @"headerItem"; ...@@ -653,6 +653,7 @@ static NSString *headerProblemItemID = @"headerItem";
if (!isFinish) { if (!isFinish) {
return; return;
} else { } else {
[hud hide:YES];
if ([action isEqualToString:@"save"]) { if ([action isEqualToString:@"save"]) {
[self httpSaveLicenceResult]; [self httpSaveLicenceResult];
} else { } else {
......
...@@ -130,14 +130,14 @@ typedef NS_ENUM(NSUInteger, bottomViewTag) { ...@@ -130,14 +130,14 @@ typedef NS_ENUM(NSUInteger, bottomViewTag) {
@"pageNumber" : @(0), @"pageNumber" : @(0),
@"pageSize" : @(200) @"pageSize" : @(200)
}; };
IBTLoadingView *hud = [IBTLoadingView showHUDAddedTo:self.view animated:YES];
ICRHTTPController *httpC = [ICRHTTPController sharedController]; ICRHTTPController *httpC = [ICRHTTPController sharedController];
[httpC getLicenceListWithData:dict success:^(id data) { [httpC getLicenceListWithData:dict success:^(id data) {
[IBTLoadingView hideHUDWithText:nil]; [hud hide:YES];
__strong __typeof(weakSelf) strongSelf = weakSelf; __strong __typeof(weakSelf) strongSelf = weakSelf;
[strongSelf fetchtPuchaseList:data]; [strongSelf fetchtPuchaseList:data];
} failure:^(id data) { } failure:^(id data) {
[IBTLoadingView hideHUDWithText:nil]; [hud hide:YES];
[IBTLoadingView showTips:data]; [IBTLoadingView showTips:data];
}]; }];
} }
......
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