Commit 9e44f071 authored by 曹云霄's avatar 曹云霄

修改项说明:

parent b70036b6
...@@ -43,7 +43,8 @@ ...@@ -43,7 +43,8 @@
{ {
WS(weakSelf); WS(weakSelf);
[self CreateMBProgressHUDLoding]; [self CreateMBProgressHUDLoding];
[[NetworkRequestClassManager Manager] NetworkWithDictionaryRequestWithURL:[NSString stringWithFormat:SERVERREQUESTURL(PRIZEBILLDETAILS),@"demo11611221750244"] WithCallClass:weakSelf WithRequestType:ONE WithParameter:nil WithReturnValueBlock:^(id returnValue) { NSString *url = [NSString stringWithFormat:SERVERREQUESTURL(PRIZEBILLDETAILS),@"demo11611221750244"];
[[NetworkRequestClassManager Manager] NetworkWithDictionaryRequestWithURL:url WithCallClass:weakSelf WithRequestType:ONE WithParameter:nil WithReturnValueBlock:^(id returnValue) {
[weakSelf RemoveMBProgressHUDLoding]; [weakSelf RemoveMBProgressHUDLoding];
if ([returnValue[@"code"] isEqualToNumber:@0]) { if ([returnValue[@"code"] isEqualToNumber:@0]) {
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#import "PrizeListModel.h" #import "PrizeListModel.h"
#import "ApplyPrizeViewController.h" #import "ApplyPrizeViewController.h"
#import "IntegralDetailsViewController.h" #import "IntegralDetailsViewController.h"
#import "PrizeExchangeDetailsViewController.h"
@interface PrizeMainViewController ()<UICollectionViewDelegate,UICollectionViewDataSource,DZNEmptyDataSetSource,DZNEmptyDataSetDelegate> @interface PrizeMainViewController ()<UICollectionViewDelegate,UICollectionViewDataSource,DZNEmptyDataSetSource,DZNEmptyDataSetDelegate>
...@@ -197,9 +198,13 @@ ...@@ -197,9 +198,13 @@
#pragma mark - 兑换记录 #pragma mark - 兑换记录
- (IBAction)exchangeRecordButton:(UIButton *)sender { - (IBAction)exchangeRecordButton:(UIButton *)sender {
IntegralDetailsViewController *prizeDetails = [[[self class] getGuideIntegralStoryboardClass] instantiateViewControllerWithIdentifier:@"IntegralDetailsViewController"]; // IntegralDetailsViewController *prizeDetails = [[[self class] getGuideIntegralStoryboardClass] instantiateViewControllerWithIdentifier:@"IntegralDetailsViewController"];
prizeDetails.cellType = PrizeTableView; // prizeDetails.cellType = PrizeTableView;
[self.navigationController pushViewController:prizeDetails animated:YES]; // [self.navigationController pushViewController:prizeDetails animated:YES];
PrizeExchangeDetailsViewController *exchangeDetails = [[[self class] getGuideIntegralStoryboardClass] instantiateViewControllerWithIdentifier:@"PrizeExchangeDetailsViewController"];
[self.navigationController pushViewController:exchangeDetails animated:YES];
} }
......
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