let htmlPath = Bundle.main.path(forResource: "index", ofType: "html", inDirectory: "www");
let urlComponents = NSURLComponents.init(url: URL.init(fileURLWithPath: htmlPath!),
resolvingAgainstBaseURL: false)
urlComponents?.queryItems = [URLQueryItem.init(name: "type", value: typeValue)]
wkwebView!.uiDelegate = self
wkwebView!.navigationDelegate = self
wkwebView!.load(URLRequest.init(url: urlComponents!.url!))