apple 4 years ago
parent
commit
83f28cba1d

BIN
ios/JianYuIOS/JianYuIOS.xcworkspace/xcuserdata/apple.xcuserdatad/UserInterfaceState.xcuserstate


+ 6 - 1
ios/JianYuIOS/JianYuIOS/Classes(模块)/JYNewExpViewController.m

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

+ 6 - 1
ios/JianYuIOS/JianYuIOS/Classes(模块)/JYNewMineViewController.m

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