Commit 82494e32dbbd6eec0ee945cc121c13a124cb5856

Authored by 王军波
1 parent 882ad09f

0.0.9

CNLiveBPersonalVerificationModule.podspec
... ... @@ -8,7 +8,7 @@
8 8  
9 9 Pod::Spec.new do |s|
10 10 s.name = 'CNLiveBPersonalVerificationModule'
11   - s.version = '0.0.8'
  11 + s.version = '0.0.9'
12 12 s.summary = 'B端个人资料认证开发'
13 13  
14 14  
... ...
CNLiveBPersonalVerificationModule/Classes/CNBPersonCardInfo/Controller/ApplyForShootController.m
... ... @@ -514,7 +514,8 @@
514 514 __weak typeof(self) weakSelf = self;
515 515 AFHTTPSessionManager *manager = [AFHTTPSessionManager manager];
516 516 [QMUITips showLoadingInView:[UIApplication sharedApplication].delegate.window];
517   - [manager POST:@"https://apiwjjtest.cnlive.com/Daren/buser/saveIdentity.action" parameters:para headers:nil constructingBodyWithBlock:^(id<AFMultipartFormData> _Nonnull formData) {
  517 + NSString *url = cn_API_Host(@"/Daren/buser/saveIdentity.action");
  518 + [manager POST:url parameters:para headers:nil constructingBodyWithBlock:^(id<AFMultipartFormData> _Nonnull formData) {
518 519  
519 520 NSData *fontData = [weakSelf imageDatasWithImage:self.fontImage];
520 521 NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
... ...