QualificationsViewController.swift 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // QualificationsViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/22.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class QualificationsViewController: BaseViewController {
  10. var wkWebView: WKWebView!
  11. @IBOutlet weak var viewMenu: UIView!
  12. override func viewDidLoad() {
  13. super.viewDidLoad()
  14. self.title = "荣誉认证"
  15. initNavLeftBackButton()
  16. let segment = Virgil_SegmentView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: 47), titles: ["产品资质", "星创客资质", "我的授权"], defaultColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), currentColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x2094F5, alpha: 1.0), lineHeight: 2, lineIsBottom: true) {[weak self] (index) in
  17. if index == 0 {
  18. self!.wkWebView.loadDataForUrl(url: "\(RequestURL.sysConfigWeb)?type=product_exhibition")
  19. } else if index == 1 {
  20. self!.wkWebView.loadDataForUrl(url: "http://img.xingchuangke.net//2beaafc460294a99be34472edb81234c")
  21. } else {
  22. self!.wkWebView.loadDataForUrl(url: "\(RequestURL.myZhengshu)?userId=\(CommonValue.getUserId())")
  23. }
  24. }
  25. self.viewMenu.addSubview(segment)
  26. let config = WKWebViewConfiguration.init()
  27. wkWebView = WKWebView.init(frame: CGRect.init(x: 0, y: 47, width: ScreenWidth, height: ScreenHeight - 47), configuration: config)
  28. self.view.addSubview(wkWebView)
  29. self.wkWebView.loadDataForUrl(url: "\(RequestURL.sysConfigWeb)?type=product_exhibition")
  30. }
  31. override func viewWillAppear(_ animated: Bool) {
  32. super.viewWillAppear(animated)
  33. }
  34. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  35. super.init(nibName: "QualificationsViewController", bundle: nil)
  36. }
  37. required init?(coder aDecoder: NSCoder) {
  38. fatalError("init(coder:) has not been implemented")
  39. }
  40. }