AboutUsViewController.m 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. //
  2. // AboutUsViewController.m
  3. // KulexiuForTeacher
  4. //
  5. // Created by Kyle on 2022/3/22.
  6. //
  7. #import "AboutUsViewController.h"
  8. #import "AboutUsBodyView.h"
  9. @interface AboutUsViewController ()
  10. @property (nonatomic, strong) AboutUsBodyView *bodyView;
  11. @end
  12. @implementation AboutUsViewController
  13. - (void)viewDidLoad {
  14. [super viewDidLoad];
  15. // Do any additional setup after loading the view.
  16. [self allocTitle:@"关于我们"];
  17. [self configUI];
  18. [self requestConfig];
  19. }
  20. - (void)requestConfig {
  21. [KSNetworkingManager queryConfigRequest:KS_POST success:^(NSDictionary * _Nonnull dic) {
  22. if ([dic ks_integerValueForKey:@"code"] == 200) {
  23. NSDictionary *result = [dic ks_dictionaryValueForKey:@"data"];
  24. NSString *phone = [result ks_stringValueForKey:@"customerServicePhone"];
  25. NSString *email = [result ks_stringValueForKey:@"customerServiceEmail"];
  26. [self.bodyView configPhone:phone email:email];
  27. }
  28. else {
  29. }
  30. } faliure:^(NSError * _Nonnull error) {
  31. }];
  32. }
  33. - (void)configUI {
  34. [self.scrollView removeFromSuperview];
  35. _bodyView = [AboutUsBodyView shareInstance];
  36. [self.view addSubview:_bodyView];
  37. [_bodyView mas_makeConstraints:^(MASConstraintMaker *make) {
  38. make.top.left.right.bottom.mas_equalTo(self.view);
  39. }];
  40. MJWeakSelf;
  41. [_bodyView showCheckLink:^{
  42. [weakSelf showCheckLink];
  43. }];
  44. }
  45. - (void)showCheckLink {
  46. // 外部浏览器打开
  47. [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"https://beian.miit.gov.cn/"] options: @{} completionHandler: nil];
  48. }
  49. /*
  50. #pragma mark - Navigation
  51. // In a storyboard-based application, you will often want to do a little preparation before navigation
  52. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  53. // Get the new view controller using [segue destinationViewController].
  54. // Pass the selected object to the new view controller.
  55. }
  56. */
  57. @end