Selaa lähdekoodia

1.地址更改

huangxiaodong 10 kuukautta sitten
vanhempi
commit
247791aa4e

+ 2 - 2
创维盒子/双子星云手机.xcodeproj/project.pbxproj

@@ -5740,7 +5740,7 @@
 				CODE_SIGN_IDENTITY = "Apple Development";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
 				CODE_SIGN_STYLE = Manual;
-				CURRENT_PROJECT_VERSION = 9;
+				CURRENT_PROJECT_VERSION = 10;
 				DEVELOPMENT_TEAM = "";
 				"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 6SV76WTUUR;
 				FRAMEWORK_SEARCH_PATHS = (
@@ -5821,7 +5821,7 @@
 				CODE_SIGN_IDENTITY = "Apple Development";
 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
 				CODE_SIGN_STYLE = Manual;
-				CURRENT_PROJECT_VERSION = 9;
+				CURRENT_PROJECT_VERSION = 10;
 				DEVELOPMENT_TEAM = "";
 				"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 6SV76WTUUR;
 				FRAMEWORK_SEARCH_PATHS = (

+ 5 - 4
创维盒子/双子星云手机/Class/Set/previewFile/shareRecordViewController.m

@@ -598,10 +598,11 @@
 //    [self gotoProtocolWKWebVCByPush:YES];
     CustomerWebViewController *vc = [[CustomerWebViewController alloc] init];
     vc.titleStr = NSLocalizedString(@"share_rule_title",nil);
-    NSString *url = @"http://testprivacy.phone.armclouding.com:1801/h5/rule.html";
-    if([CloudService rangeOfString:@"hiboxde.armclouding.com"].location != NSNotFound){
-        url = @"http://hiboxde.armclouding.com:7780/h5/rule.html";;
-    }
+//    NSString *url = @"http://testprivacy.phone.armclouding.com:1801/h5/rule.html";
+//    if([CloudService rangeOfString:@"hiboxde.armclouding.com"].location != NSNotFound){
+//        url = @"http://hiboxde.armclouding.com:7780/h5/rule.html";;
+//    }
+    NSString *url = [[NSString alloc] initWithFormat:@"%@/h5/rule.html",CloudService];
     vc.webUrl = url;
     [self.navigationController pushViewController:vc animated:YES];
 }

+ 6 - 6
创维盒子/双子星云手机/NAS/NASViewController.m

@@ -1037,12 +1037,12 @@
     else if(tag ==2 || tag == 10){
         CustomerWebViewController *vc = [[CustomerWebViewController alloc] init];
         vc.titleStr = NSLocalizedString(@"mine_newuser_title",nil);
-        NSString *url = @"http://testprivacy.phone.androidscloud.com:1801/warrantyService/index.html#/novice?isNovice=true";
-        
-        if([CloudService rangeOfString:@"hiboxde.armclouding.com"].location != NSNotFound){
-            //url = @"http://hiboxde.armclouding.com:7780/h5/rule.html";;
-        }
-        
+//        NSString *url = @"http://testprivacy.phone.androidscloud.com:1801/warrantyService/index.html#/novice?isNovice=true";
+//        
+//        if([CloudService rangeOfString:@"hiboxde.armclouding.com"].location != NSNotFound){
+//            //url = @"http://hiboxde.armclouding.com:7780/h5/rule.html";;
+//        }
+        NSString *url = [[NSString alloc] initWithFormat:@"%@/warrantyService/index.html#/novice?isNovice=true",CloudService];
         if(tag == 10){
             url = [url stringByReplacingOccurrencesOfString:@"?isNovice=true" withString:@""];
         }

+ 10 - 8
创维盒子/双子星云手机/mine/mineViewController.m

@@ -154,10 +154,11 @@
             
             CustomerWebViewController *vc = [[CustomerWebViewController alloc] init];
             vc.titleStr = NSLocalizedString(@"mine_help_title",nil);
-            NSString *url = @"http://testprivacy.phone.armclouding.com:1801/problemFeedback/#/pages/fileSharing/problem/index?sn=";
-            if([CloudService rangeOfString:@"hiboxde.armclouding.com"].location != NSNotFound){
-                //url = @"http://hiboxde.armclouding.com:7780/h5/rule.html";;
-            }
+//            NSString *url = @"http://testprivacy.phone.armclouding.com:1801/problemFeedback/#/pages/fileSharing/problem/index?sn=";
+//            if([CloudService rangeOfString:@"hiboxde.armclouding.com"].location != NSNotFound){
+//                //url = @"http://hiboxde.armclouding.com:7780/h5/rule.html";;
+//            }
+            NSString *url = [[NSString alloc] initWithFormat:@"%@/problemFeedback/#/pages/fileSharing/problem/index?sn=",CloudService];
             vc.webUrl = [[NSString alloc] initWithFormat:@"%@%@",url,[connectDeviceManager shareInstance].DeviceThirdIdMod.data.changeSn];
             [self pushViewController:vc animated:YES];
             
@@ -176,10 +177,11 @@
         case 14:{
             CustomerWebViewController *vc = [[CustomerWebViewController alloc] init];
             vc.titleStr = NSLocalizedString(@"mine_newuser_title",nil);
-            NSString *url = @"http://testprivacy.phone.androidscloud.com:1801/warrantyService/index.html#/novice";
-            if([CloudService rangeOfString:@"hiboxde.armclouding.com"].location != NSNotFound){
-                //url = @"http://hiboxde.armclouding.com:7780/h5/rule.html";;
-            }
+//            NSString *url = @"http://testprivacy.phone.androidscloud.com:1801/warrantyService/index.html#/novice";
+//            if([CloudService rangeOfString:@"hiboxde.armclouding.com"].location != NSNotFound){
+//                //url = @"http://hiboxde.armclouding.com:7780/h5/rule.html";;
+//            }
+            NSString *url = [[NSString alloc] initWithFormat:@"%@/warrantyService/index.html#/novice",CloudService];
             vc.webUrl = url;
             [self pushViewController:vc animated:YES];
         }