|
@@ -1511,8 +1511,13 @@ NSString *const new_AesKey_2 = @"mGlAgnIBB8bx2nch";
|
|
|
-(void)jyRefreshMenusView:(NSNotification *)notificaition {
|
|
|
NSDictionary *dict = notificaition.userInfo;
|
|
|
NSString *name = [NSString stringWithFormat:@"%@",dict[@"name"]];
|
|
|
+ NSString *type = [NSString stringWithFormat:@"%@",dict[@"type"]];
|
|
|
if ([name isEqualToString:@"subscribe"]) {
|
|
|
- [self.webView reload];
|
|
|
+ if ([type isEqualToString:@"0"]) {
|
|
|
+ [self.webView reload];
|
|
|
+ }else {
|
|
|
+ [self webViewFirstRequest];
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|