ApplyCardAgentViewController.swift 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // ApplyCardAgentViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/7/16.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ApplyCardAgentViewController: UIViewController {
  10. /// 0办卡 1:积分
  11. var type = 0
  12. var wkWebView: WKWebView!
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. // Do any additional setup after loading the view.
  16. let config = WKWebViewConfiguration.init()
  17. wkWebView = WKWebView.init(frame: self.view.bounds, configuration: config)
  18. self.view.addSubview(wkWebView)
  19. let name = type == 0 ? "card" : "jf"
  20. let htmlPath = "\(RequestURL.hostMainH5)daili_\(name).html?userLevel=\(CommonValue.getUserLevel())&userId=\(CommonValue.getUserId())" //&userId=\(CommonValue.getUserId())
  21. wkWebView.loadDataForUrl(url: htmlPath)
  22. }
  23. override func viewWillAppear(_ animated: Bool) {
  24. super.viewWillAppear(animated)
  25. self.tabBarController?.title = self.title
  26. }
  27. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  28. super.init(nibName: "ApplyCardAgentViewController", bundle: nil)
  29. }
  30. required init?(coder aDecoder: NSCoder) {
  31. fatalError("init(coder:) has not been implemented")
  32. }
  33. }