This commit is contained in:
启星
2025-08-11 17:33:47 +08:00
parent c48a8365ef
commit 2156d56dae
13 changed files with 18 additions and 13 deletions

View File

@@ -41,7 +41,7 @@ static void *WKWebBrowserContext = &WKWebBrowserContext;
}
- (void)loadData {
NSInteger safeTop = kSafeAreaTop;
NSURL* url= [NSURL URLWithString:[NSString stringWithFormat:@"https://vespa.qxmier.com/web/index.html#/pages/feedback/teenage?id=%@&h=%ld",[QXGlobal shareGlobal].loginModel.token,safeTop]];
NSURL* url= [NSURL URLWithString:[NSString stringWithFormat:@"%@web/index.html#/pages/feedback/teenage?id=%@&h=%ld",H5ServerUrl,[QXGlobal shareGlobal].loginModel.token,safeTop]];
NSURLRequest *request =[NSURLRequest requestWithURL:url];
[self.contentWebView loadRequest:request];
}