Steven 1 年之前
父节点
当前提交
2280ec0b59

+ 2 - 2
KulexiuForTeacher/KulexiuForTeacher.xcodeproj/project.pbxproj

@@ -8558,7 +8558,7 @@
 				CLANG_ENABLE_MODULES = YES;
 				CODE_SIGN_ENTITLEMENTS = KulexiuForTeacher/KulexiuForTeacher.entitlements;
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 1.4.8.1;
+				CURRENT_PROJECT_VERSION = 1.4.8.2;
 				DEVELOPMENT_TEAM = B2AP53HHTU;
 				ENABLE_BITCODE = NO;
 				FRAMEWORK_SEARCH_PATHS = (
@@ -8622,7 +8622,7 @@
 				CLANG_ENABLE_MODULES = YES;
 				CODE_SIGN_ENTITLEMENTS = KulexiuForTeacher/KulexiuForTeacher.entitlements;
 				CODE_SIGN_STYLE = Automatic;
-				CURRENT_PROJECT_VERSION = 1.4.8.1;
+				CURRENT_PROJECT_VERSION = 1.4.8.2;
 				DEVELOPMENT_TEAM = B2AP53HHTU;
 				ENABLE_BITCODE = NO;
 				FRAMEWORK_SEARCH_PATHS = (

+ 9 - 3
KulexiuForTeacher/KulexiuForTeacher/Module/Home/Controller/HomeViewController.m

@@ -1620,9 +1620,15 @@
     
     HomeMessageModel *model = self.bannerArray[index];
     if (![NSString isEmptyString:model.linkUrl]) {
-        KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
-        webCtrl.url = model.linkUrl;
-        [self.navigationController pushViewController:webCtrl animated:YES];
+        if ([model.linkType isEqualToString:@"OUT"]) {
+            // 外部浏览器打开
+            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:model.linkUrl] options: @{} completionHandler: nil];
+        }
+        else {
+            KSBaseWKWebViewController *webCtrl = [[KSBaseWKWebViewController alloc] init];
+            webCtrl.url = model.linkUrl;
+            [self.navigationController pushViewController:webCtrl animated:YES];
+        }
     }
 }
 

+ 8 - 1
KulexiuForTeacher/KulexiuForTeacher/Module/Mall/Controller/ShopMallViewController.m

@@ -13,11 +13,18 @@
 
 @implementation ShopMallViewController
 
+- (instancetype)init {
+    self = [super init];
+    if (self) {
+        self.url = [NSString stringWithFormat:@"%@%@",WEBHOST, @"/#/shopMall"];
+    }
+    return self;
+}
+
 - (void)viewDidLoad {
     [super viewDidLoad];
     // Do any additional setup after loading the view.
     self.webBackButton.hidden = YES;
-    self.url = [NSString stringWithFormat:@"%@%@",WEBHOST, @"/#/shopMall"];
 }