|
@@ -492,7 +492,7 @@
|
|
|
|
|
|
- (void)moreRecommendMusic {
|
|
- (void)moreRecommendMusic {
|
|
KSBaseWKWebViewController *ctrl = [[KSBaseWKWebViewController alloc] init];
|
|
KSBaseWKWebViewController *ctrl = [[KSBaseWKWebViewController alloc] init];
|
|
- ctrl.url = [NSString stringWithFormat:@"%@%@", WEBHOST, @"/#/music-list"];
|
|
|
|
|
|
+ ctrl.url = [NSString stringWithFormat:@"%@%@%@", WEBHOST, @"/#/music-list", @"?type=TOP"];
|
|
[self.navigationController pushViewController:ctrl animated:YES];
|
|
[self.navigationController pushViewController:ctrl animated:YES];
|
|
}
|
|
}
|
|
|
|
|
|
@@ -550,7 +550,7 @@
|
|
|
|
|
|
- (void)moreNewMusic {
|
|
- (void)moreNewMusic {
|
|
KSBaseWKWebViewController *ctrl = [[KSBaseWKWebViewController alloc] init];
|
|
KSBaseWKWebViewController *ctrl = [[KSBaseWKWebViewController alloc] init];
|
|
- ctrl.url = [NSString stringWithFormat:@"%@%@", WEBHOST, @"/#/music-list"];
|
|
|
|
|
|
+ ctrl.url = [NSString stringWithFormat:@"%@%@%@", WEBHOST, @"/#/music-list", @"?type=NEW"];
|
|
[self.navigationController pushViewController:ctrl animated:YES];
|
|
[self.navigationController pushViewController:ctrl animated:YES];
|
|
}
|
|
}
|
|
|
|
|
|
@@ -573,7 +573,7 @@
|
|
|
|
|
|
- (void)moreHotMusic {
|
|
- (void)moreHotMusic {
|
|
KSBaseWKWebViewController *ctrl = [[KSBaseWKWebViewController alloc] init];
|
|
KSBaseWKWebViewController *ctrl = [[KSBaseWKWebViewController alloc] init];
|
|
- ctrl.url = [NSString stringWithFormat:@"%@%@", WEBHOST, @"/#/music-list"];
|
|
|
|
|
|
+ ctrl.url = [NSString stringWithFormat:@"%@%@%@", WEBHOST, @"/#/music-list", @"?type=HOT"];
|
|
[self.navigationController pushViewController:ctrl animated:YES];
|
|
[self.navigationController pushViewController:ctrl animated:YES];
|
|
}
|
|
}
|
|
|
|
|