diff --git a/vanke/view_iPhone/templates/main/VankeMainBoard_iPhone.m b/vanke/view_iPhone/templates/main/VankeMainBoard_iPhone.m
index 4d87fb32d20dd107512975cb5a83c4c216d87cfa..b34d2c9647af6591832c0286dd7461d6553e74d4 100755
--- a/vanke/view_iPhone/templates/main/VankeMainBoard_iPhone.m
+++ b/vanke/view_iPhone/templates/main/VankeMainBoard_iPhone.m
@@ -228,13 +228,15 @@ ON_SIGNAL3(VankeProjectSummaryModel, RELOADED, signal) {
         return;
     }
     
-    ProjectSummaryResponse *resp = [_summaryModel getServerResp];
-    if ([resp hasClassification:@"社区2049"]) {
-        [self showTab:0];
-    } else if ([resp hasClassification:@"万科中心"]) {
-        [self showTab:1];
-    } else if ([resp hasClassification:@"万科广场"]) {
-        [self showTab:2];
+    if (nil == _currDashBoard) {
+        ProjectSummaryResponse *resp = [_summaryModel getServerResp];
+        if ([resp hasClassification:@"社区2049"]) {
+            [self showTab:0];
+        } else if ([resp hasClassification:@"万科中心"]) {
+            [self showTab:1];
+        } else if ([resp hasClassification:@"万科广场"]) {
+            [self showTab:2];
+        }
     }
     
     if (nil != _currDashBoard) {