|
@@ -39,6 +39,8 @@ JSExportAs(business, -(NSInteger)jsBusiness:(NSInteger)shooID shopType:(NSIntege
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
//新增
|
|
|
JSExportAs(hiddenBottom, -(void)jsHiddenBottom:(NSString*)hidden);
|
|
|
|
|
@@ -47,6 +49,11 @@ JSExportAs(loginSuccess, -(void)jsLoginSuccess:(NSString*)status);
|
|
|
JSExportAs(backUrl, -(void)jsBackUrl:(NSString*)str);
|
|
|
|
|
|
|
|
|
+JSExportAs(redirectKeyset, -(void)jsRedirectKeyset:(NSString*)str);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
@end
|
|
|
|
|
|
|
|
@@ -970,6 +977,29 @@ NSString *const AesKey_0 = @"mGlAgnIBB8bx2nch";
|
|
|
free(encryptedBytes);
|
|
|
return nil;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+-(void)jsRedirectKeyset:(NSString*)str
|
|
|
+{
|
|
|
+
|
|
|
+
|
|
|
+ [[NSNotificationCenter defaultCenter] postNotificationName:@"refreshDY" object:nil userInfo:nil];
|
|
|
+
|
|
|
+ [self performSelector:@selector(nextVC) withObject:nil afterDelay:0.5];
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+-(void)nextVC
|
|
|
+{
|
|
|
+ AppDelegate *delegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
|
|
|
+ JYTabBarController *tab = (JYTabBarController *)delegate.window.rootViewController;
|
|
|
+ tab.selectedIndex = 1;
|
|
|
+
|
|
|
+ [self webViewFirstRequest];
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
#pragma mark - Navigation
|
|
|
|