Commit 53dc363093ac470ed36e30c0913588eddb751320

Authored by 王军波
2 parents 3e89b6be c0dad2df
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.2'
  11 + s.version = '0.0.3'
12 12 s.summary = 'B端个人资料认证开发'
13 13  
14 14 # This description is used to generate tags and improve search results.
... ... @@ -72,6 +72,7 @@ s.subspec 'CNBInstitutionInfo' do |institution|
72 72 institution.dependency 'CNLiveEnvironment'
73 73 # #基础库
74 74 # institution.dependency 'CNLiveBaseClass'
  75 + institution.dependency 'CNLiveBusinessBaseModule'
75 76 # #协议库
76 77 institution.dependency 'CNLiveBeeHive'
77 78 institution.dependency 'CNLiveBServices'
... ...
CNLiveBPersonalVerificationModule/Classes/CNBInstitutionInfo/Controller/CNBPerAuthSuccessController.h
... ... @@ -5,11 +5,11 @@
5 5 // Created by 殷巧娟 on 2020/4/14.
6 6 //
7 7  
8   -#import <UIKit/UIKit.h>
9   -
  8 +//#import <UIKit/UIKit.h>
  9 +#import "CNCommonViewController.h"
10 10 NS_ASSUME_NONNULL_BEGIN
11 11  
12   -@interface CNBPerAuthSuccessController : UIViewController
  12 +@interface CNBPerAuthSuccessController : CNCommonViewController
13 13 - (instancetype)initControllerWithParam:(NSDictionary *)param;
14 14 @end
15 15  
... ...
CNLiveBPersonalVerificationModule/Classes/CNBInstitutionInfo/Controller/CNBPersonalVerificationController.h
... ... @@ -5,11 +5,11 @@
5 5 // Created by 殷巧娟 on 2020/4/7.
6 6 //
7 7  
8   -#import <UIKit/UIKit.h>
9   -
  8 +//#import <UIKit/UIKit.h>
  9 +#import "CNCommonViewController.h"
10 10 NS_ASSUME_NONNULL_BEGIN
11 11  
12   -@interface CNBPersonalVerificationController : UIViewController
  12 +@interface CNBPersonalVerificationController : CNCommonViewController
13 13  
14 14 @end
15 15  
... ...
CNLiveBPersonalVerificationModule/Classes/CNBInstitutionInfo/ViewModel/CNBPerAuthViewModel.m
... ... @@ -83,8 +83,8 @@
83 83 #pragma mark -请求认证成功
84 84 + (void)getPerAuthSuccessList:(void (^)(NSMutableArray *dataArray))successBlock failureBlock:(void (^)(NSError * error))failureBlock {
85 85 NSDictionary *param = @{
86   - @"sid":@"10513196"
87   -// @"sid":CNUserShareModelUid
  86 +// @"sid":@"10513196"
  87 + @"sid":CNUserShareModelUid
88 88 };
89 89 [CNLiveNetworking setupShowDataResult:NO];
90 90 [CNLiveNetworking setAllowRequestDefaultArgument:YES];
... ...