BaseViewController.swift 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146
  1. //
  2. // BaseViewController.swift
  3. // SparkEducation
  4. //
  5. // Created by virgil on 16/3/14.
  6. // Copyright © 2016年 virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class BaseViewController: BaseMainViewController, CLLocationManagerDelegate {
  10. var dataSize: NSDictionary?
  11. var dicBackDataAnyObject: AnyObject!
  12. var dicBackData = NSMutableDictionary()
  13. var dicBackLoData: NSDictionary?
  14. var isAlertError = true; // 请求错误时,是否弹浮窗提示
  15. override func viewDidLoad() {
  16. super.viewDidLoad()
  17. //解决MJRefresh在IOS11以后 顶部显示问题
  18. if #available(iOS 11.0, *) {
  19. for viewT in self.view.subviews {
  20. if viewT.isKind(of: UITableView.classForCoder()) {
  21. (viewT as! UITableView).contentInsetAdjustmentBehavior = .never
  22. } else if viewT.isKind(of: UICollectionView.classForCoder()) {
  23. (viewT as! UICollectionView).contentInsetAdjustmentBehavior = .never
  24. }
  25. }
  26. } else {
  27. self.automaticallyAdjustsScrollViewInsets = false
  28. //低于 iOS 9.0
  29. }
  30. }
  31. // MARK: 数据请求方法类
  32. // https 配置证书
  33. func customSecurityPolicy() -> AFSecurityPolicy {
  34. let cerPath = Bundle.main.path(forResource: "app", ofType: "cer") ?? ""
  35. let cerData = NSData(contentsOfFile: cerPath)
  36. let cerSet = NSSet(object: cerData as Any)
  37. let securityPolicy = AFSecurityPolicy(pinningMode: .certificate, withPinnedCertificates: cerSet as! Set<Data>)
  38. securityPolicy.allowInvalidCertificates = true
  39. securityPolicy.validatesDomainName = false
  40. return securityPolicy
  41. }
  42. // 请求列表数据
  43. func loadDataList(url: String, params: NSMutableDictionary, tag: Int) {
  44. isAlertError = true
  45. if self.currentPage == 1 {
  46. self.arrData.removeAllObjects()
  47. }
  48. params.setValue(self.currentPage, forKey: "pageNumber")
  49. params.setValue(self.pageSize, forKey: "pageSize")
  50. let http = CommonValue.getHttp()
  51. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  52. let json = json1 as! NSDictionary
  53. print(json)
  54. let succeed = json.object(forKey: "succeed") as! String
  55. if succeed == "000" {
  56. if self.currentPage == 1 {
  57. self.arrData.removeAllObjects()
  58. }
  59. let dataInfo = json["dataInfo"] as? NSDictionary
  60. if dataInfo != nil {
  61. let array = dataInfo!["dataList"] as? NSArray
  62. if array != nil {
  63. for dic in array! {
  64. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  65. self.arrData.add(dicNew)
  66. }
  67. }
  68. } else {
  69. let array = json["dataInfo"] as? NSArray
  70. if array != nil {
  71. for dic in array! {
  72. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  73. self.arrData.add(dicNew)
  74. }
  75. }
  76. }
  77. self.returnData(tag: tag)
  78. } else {
  79. self.returnError(tag: tag, type: succeed)
  80. if self.isAlertError {
  81. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  82. }
  83. }
  84. }, failure: { (_, err) -> Void in
  85. CommonUntils.alertError(error: err as NSError)
  86. self.returnError(tag: tag, type: "9999")
  87. })
  88. }
  89. func loadDataInfoPost(url: String, params: NSMutableDictionary, tag: Int) {
  90. isAlertError = true
  91. let http = CommonValue.getHttp()
  92. http.securityPolicy = customSecurityPolicy()
  93. MBProgressHUD.showAdded(to: self.view, animated: true)
  94. // http.get(url, parameters: params ,progress:nil , success: { (operation, json1) -> Void in
  95. http.post(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  96. let json = json1 as! NSDictionary
  97. print(json)
  98. let succeed = json.object(forKey: "success") as! Bool
  99. let success = "\(json.object(forKey: "statusCode") ?? "000")"
  100. if succeed == true {
  101. if success == "200" {
  102. let dataInfo = json["data"] as? NSDictionary
  103. if dataInfo != nil {
  104. self.dicData.setDictionary(dataInfo as! [AnyHashable: Any])
  105. }
  106. self.returnData(tag: tag)
  107. } else {
  108. self.returnError(tag: tag, type: success)
  109. if self.isAlertError {
  110. SVProgressHUD.showError(withStatus: json.object(forKey: "message") as? String)
  111. }
  112. }
  113. }else {
  114. self.returnError(tag: tag, type: success)
  115. if self.isAlertError {
  116. SVProgressHUD.showError(withStatus: json.object(forKey: "message") as? String)
  117. }
  118. }
  119. MBProgressHUD.hide(for: self.view, animated: true)
  120. }, failure: { (_, err) -> Void in
  121. MBProgressHUD.hide(for: self.view, animated: true)
  122. CommonUntils.alertError(error: err as NSError)
  123. self.returnError(tag: tag, type: "9999")
  124. })
  125. }
  126. func loadDataInfoPostRZ(url: String, params: NSMutableDictionary, tag: Int) {
  127. isAlertError = true
  128. let http = CommonValue.getHttp()
  129. http.securityPolicy = customSecurityPolicy()
  130. MBProgressHUD.showAdded(to: self.view, animated: true)
  131. // http.get(url, parameters: params ,progress:nil , success: { (operation, json1) -> Void in
  132. http.post(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  133. let json = json1 as! NSDictionary
  134. print(json)
  135. let succeed = json.object(forKey: "success") as! Bool
  136. let statusCode = json.object(forKey: "statusCode") as! Int
  137. if succeed && statusCode == 400{
  138. let dataInfo = json["message"] as? NSString
  139. if dataInfo != nil {
  140. self.dicData.setDictionary(json as! [AnyHashable: Any])
  141. }
  142. self.returnData(tag: tag)
  143. }else if succeed && statusCode == 200 {
  144. SVProgressHUD.showSuccess(withStatus: json.object(forKey: "message") as? String)
  145. }else {
  146. self.returnError(tag: tag, type: "")
  147. if self.isAlertError {
  148. SVProgressHUD.showError(withStatus: json.object(forKey: "message") as? String)
  149. }
  150. }
  151. MBProgressHUD.hide(for: self.view, animated: true)
  152. }, failure: { (_, err) -> Void in
  153. MBProgressHUD.hide(for: self.view, animated: true)
  154. CommonUntils.alertError(error: err as NSError)
  155. self.returnError(tag: tag, type: "9999")
  156. })
  157. }
  158. func loadDataListPost(url: String, params: NSMutableDictionary, tag: Int) {
  159. isAlertError = true
  160. if self.currentPage == 1 {
  161. self.arrData.removeAllObjects()
  162. }
  163. // params.setValue(self.currentPage, forKey: "pageNumber")
  164. // params.setValue(self.pageSize, forKey: "pageSize")
  165. let http = CommonValue.getHttp()
  166. http.securityPolicy = customSecurityPolicy()
  167. http.responseSerializer = AFJSONResponseSerializer()
  168. // http.requestSerializer = AFHTTPRequestSerializer();
  169. http.requestSerializer.setValue("Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:60.0) Gecko/20100101 Firefox/60.0", forHTTPHeaderField: "User-Agent")
  170. http.requestSerializer.setValue("application/json, text/javascript, */*; q=0.01", forHTTPHeaderField: "Accept")
  171. http.requestSerializer.setValue("topbarnewsshow=1; _ntes_nnid=8f33b5fed9dec9409bd4dc4994c7d59d,1525239051198; _ntes_nuid=8f33b5fed9dec9409bd4dc4994c7d59d; vjuids=3392fcda9.16339cc603e.0.6df8017661491; vjlast=1525683085.1526450258.11; vinfo_n_f_l_n3=63f469d9bed36f43.1.2.1525683085404.1525745136234.1526450292170; P_INFO=xiao77isgood@163.com|1526315502|0|mail163|10&17|shd&1526200230&mail163#shd&371300#10#0#0|&0|mail163|xiao77isgood@163.com; nts_mail_user=xiao77isgood@163.com:-1:1; mail_psc_fingerprint=9a1ed88d5a722fc9f1f216b7e86d50bc; topbarnewsshow=1", forHTTPHeaderField: "Cookie")
  172. // http.requestSerializer.setValue("text/json; charset=gbk", forHTTPHeaderField: "Content-Type")
  173. http.post(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  174. // print(String(NSString(data: json1 as! Data, encoding: String.Encoding.utf8.rawValue)!))
  175. let json = json1 as! NSDictionary
  176. print(json)
  177. let succeed = json.object(forKey: "success") as! Bool
  178. if succeed {
  179. if self.currentPage == 1 {
  180. self.arrData.removeAllObjects()
  181. }
  182. let dataInfo = json["data"] as? NSDictionary
  183. if dataInfo != nil {
  184. let array = dataInfo!["dataList"] as? NSArray
  185. if array != nil {
  186. for dic in array! {
  187. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  188. self.arrData.add(dicNew)
  189. }
  190. }
  191. } else {
  192. let array = json["data"] as? NSArray
  193. let dic: NSDictionary = array![0] as! NSDictionary
  194. var dataArr = dic["activityModelList"] as? NSArray
  195. if dic["machineTypeModelList"] != nil {
  196. dataArr = dic["machineTypeModelList"] as? NSArray
  197. }
  198. if dataArr != nil {
  199. for dic in dataArr! {
  200. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  201. self.arrData.add(dicNew)
  202. }
  203. }
  204. }
  205. self.returnData(tag: tag)
  206. } else {
  207. self.returnError(tag: tag, type: "")
  208. if self.isAlertError {
  209. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  210. }
  211. }
  212. }, failure: { (_, err) -> Void in
  213. CommonUntils.alertError(error: err as NSError)
  214. self.returnError(tag: tag, type: "9999")
  215. })
  216. }
  217. func loadDataListPostMerchants(url: String, params: NSMutableDictionary, tag: Int) {
  218. isAlertError = true
  219. if self.currentPage == 1 {
  220. self.arrDataMj.removeAllObjects()
  221. }
  222. // params.setValue(self.currentPage, forKey: "pageNumber")
  223. // params.setValue(self.pageSize, forKey: "pageSize")
  224. let http = CommonValue.getHttp()
  225. http.securityPolicy = customSecurityPolicy()
  226. http.responseSerializer = AFJSONResponseSerializer()
  227. // http.requestSerializer = AFHTTPRequestSerializer();
  228. http.requestSerializer.setValue("Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:60.0) Gecko/20100101 Firefox/60.0", forHTTPHeaderField: "User-Agent")
  229. http.requestSerializer.setValue("application/json, text/javascript, */*; q=0.01", forHTTPHeaderField: "Accept")
  230. http.requestSerializer.setValue("topbarnewsshow=1; _ntes_nnid=8f33b5fed9dec9409bd4dc4994c7d59d,1525239051198; _ntes_nuid=8f33b5fed9dec9409bd4dc4994c7d59d; vjuids=3392fcda9.16339cc603e.0.6df8017661491; vjlast=1525683085.1526450258.11; vinfo_n_f_l_n3=63f469d9bed36f43.1.2.1525683085404.1525745136234.1526450292170; P_INFO=xiao77isgood@163.com|1526315502|0|mail163|10&17|shd&1526200230&mail163#shd&371300#10#0#0|&0|mail163|xiao77isgood@163.com; nts_mail_user=xiao77isgood@163.com:-1:1; mail_psc_fingerprint=9a1ed88d5a722fc9f1f216b7e86d50bc; topbarnewsshow=1", forHTTPHeaderField: "Cookie")
  231. // http.requestSerializer.setValue("text/json; charset=gbk", forHTTPHeaderField: "Content-Type")
  232. http.post(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  233. // print(String(NSString(data: json1 as! Data, encoding: String.Encoding.utf8.rawValue)!))
  234. let json = json1 as! NSDictionary
  235. print(json)
  236. let succeed = json.object(forKey: "success") as! Bool
  237. if succeed {
  238. if self.currentPage == 1 {
  239. self.arrDataMj.removeAllObjects()
  240. }
  241. let dataInfo = json["data"] as? NSDictionary
  242. if dataInfo != nil {
  243. let array = dataInfo!["dataList"] as? NSArray
  244. if array != nil {
  245. for dic in array! {
  246. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  247. self.arrDataMj.add(dicNew)
  248. }
  249. }
  250. } else {
  251. let array = json["data"] as? NSArray
  252. let dic: NSDictionary = array![0] as! NSDictionary
  253. var dataArr = dic["activityModelList"] as? NSArray
  254. if dic["machineTypeModelList"] != nil {
  255. dataArr = dic["machineTypeModelList"] as? NSArray
  256. }
  257. if dataArr != nil {
  258. for dic in dataArr! {
  259. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  260. self.arrDataMj.add(dicNew)
  261. }
  262. }
  263. }
  264. self.returnData(tag: tag)
  265. } else {
  266. self.returnError(tag: tag, type: "")
  267. if self.isAlertError {
  268. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  269. }
  270. }
  271. }, failure: { (_, err) -> Void in
  272. CommonUntils.alertError(error: err as NSError)
  273. self.returnError(tag: tag, type: "9999")
  274. })
  275. }
  276. func loadDataList(url: String, params: NSMutableDictionary, tag: Int, array: NSMutableArray) {
  277. isAlertError = true
  278. params.setValue(self.currentPage, forKey: "pageNumber")
  279. params.setValue(self.pageSize, forKey: "pageSize")
  280. let http = CommonValue.getHttp()
  281. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  282. let json = json1 as! NSDictionary
  283. print(json)
  284. let succeed = json.object(forKey: "succeed") as! String
  285. if succeed == "000" {
  286. let dataInfo = json["dataInfo"] as? NSDictionary
  287. if dataInfo != nil {
  288. let arrayTemp = dataInfo!["dataList"] as? NSArray
  289. if arrayTemp != nil {
  290. for dic in arrayTemp! {
  291. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  292. array.add(dicNew)
  293. }
  294. }
  295. } else {
  296. let arrayTemp = json["dataInfo"] as? NSArray
  297. if arrayTemp != nil {
  298. for dic in arrayTemp! {
  299. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  300. array.add(dicNew)
  301. }
  302. }
  303. }
  304. self.returnData(tag: tag)
  305. } else {
  306. self.returnError(tag: tag, type: succeed)
  307. if self.isAlertError {
  308. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  309. }
  310. }
  311. }, failure: { (_, err) -> Void in
  312. CommonUntils.alertError(error: err as NSError)
  313. self.returnError(tag: tag, type: "9999")
  314. })
  315. }
  316. func TloadDataList(url: String, params: NSMutableDictionary, tag: Int, array: NSMutableArray) {
  317. isAlertError = true
  318. params.setValue(self.currentPage, forKey: "pageNumber")
  319. params.setValue(self.pageSize, forKey: "pageSize")
  320. params.setValue(CommonValue.getUserId(), forKey: "userId")
  321. let http = CommonValue.getHttp()
  322. print(params)
  323. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  324. let json = json1 as! NSDictionary
  325. print(json)
  326. let succeed = json.object(forKey: "statusCode") as! Int
  327. if succeed == 200 {
  328. let dataInfo = json["dataInfo"] as? NSDictionary
  329. if dataInfo != nil {
  330. let arrayTemp = dataInfo!["dataList"] as? NSArray
  331. if arrayTemp != nil {
  332. for dic in arrayTemp! {
  333. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  334. array.add(dicNew)
  335. }
  336. }
  337. } else {
  338. let dicn = ["name":"全部","id":"FFFFFF"]
  339. // array.add(dicn)
  340. let arrayTemp = json["data"] as? NSArray
  341. if arrayTemp != nil {
  342. for dic in arrayTemp! {
  343. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  344. array.add(dicNew)
  345. }
  346. }
  347. }
  348. self.returnData(tag: tag)
  349. } else {
  350. self.returnError(tag: tag, type: "\(succeed)")
  351. if self.isAlertError {
  352. SVProgressHUD.showError(withStatus: json.object(forKey: "message") as? String)
  353. }
  354. }
  355. }, failure: { (_, err) -> Void in
  356. CommonUntils.alertError(error: err as NSError)
  357. self.returnError(tag: tag, type: "9999")
  358. })
  359. }
  360. let dicDataList = NSMutableDictionary()
  361. func loadDataList(url: String, params: NSMutableDictionary, tableView: UITableView, tag: Int) {
  362. isAlertError = true
  363. if self.currentPage == 1 {
  364. self.arrData.removeAllObjects()
  365. }
  366. params.setValue(self.currentPage, forKey: "pageNumber")
  367. params.setValue(self.pageSize, forKey: "pageSize")
  368. MBProgressHUD.showAdded(to: self.view, animated: true)
  369. let http = CommonValue.getHttp()
  370. http.get(url, parameters: params, progress: nil, success: {[weak self] (_, json1) -> Void in
  371. let json = json1 as! NSDictionary
  372. print(json)
  373. let succeed = json.object(forKey: "succeed") as! String
  374. if succeed == "000" {
  375. if self!.currentPage == 1 {
  376. self!.arrData.removeAllObjects()
  377. }
  378. let dataInfo = json["dataInfo"] as? NSDictionary
  379. if dataInfo != nil {
  380. self!.dicDataList.setDic(dic: dataInfo!)
  381. self!.dicData.setDictionary(dataInfo as! [AnyHashable: Any])
  382. let array = dataInfo!["dataList"] as? NSArray
  383. if array != nil {
  384. for dic in array! {
  385. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  386. self!.arrData.add(dicNew)
  387. }
  388. }else{
  389. let array1 = dataInfo!["agents"] as? NSArray
  390. for dic in array1 ?? [] {
  391. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  392. self!.arrData.add(dicNew)
  393. }
  394. }
  395. } else {
  396. let array = json["dataInfo"] as? NSArray
  397. if array != nil {
  398. for dic in array! {
  399. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  400. self!.arrData.add(dicNew)
  401. }
  402. }
  403. }
  404. let dataS = json["dataSize"] as? NSDictionary
  405. if dataS != nil {
  406. self?.dataSize = dataS
  407. }
  408. self!.returnData(tag: tag)
  409. } else {
  410. self!.returnError(tag: tag, type: succeed)
  411. if self!.isAlertError {
  412. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  413. }
  414. }
  415. if self!.arrData.count > 0 {
  416. self!.hiddenNoDataViewForTableView(tableView: tableView)
  417. } else {
  418. self!.showNoDataViewForTableView(tableView: tableView)
  419. }
  420. if tableView.mj_header != nil {
  421. tableView.mj_header?.endRefreshing()
  422. }
  423. if tableView.mj_footer != nil {
  424. tableView.mj_footer?.endRefreshing()
  425. }
  426. MBProgressHUD.hide(for: self?.view ?? UIView.init(), animated: true)
  427. }, failure: { (_, err) -> Void in
  428. MBProgressHUD.hide(for: self.view, animated: true)
  429. if tableView.mj_header != nil {
  430. tableView.mj_header?.endRefreshing()
  431. }
  432. if tableView.mj_footer != nil {
  433. tableView.mj_footer?.endRefreshing()
  434. }
  435. CommonUntils.alertError(error: err as NSError)
  436. self.returnError(tag: tag, type: "9999")
  437. })
  438. }
  439. func TloadDataList(url: String, params: NSMutableDictionary, tableView: UITableView, tag: Int) {
  440. isAlertError = true
  441. if self.currentPage == 1 {
  442. self.arrData.removeAllObjects()
  443. }
  444. params.setValue(self.currentPage, forKey: "currentPage")
  445. params.setValue(self.pageSize, forKey: "showCount")
  446. params.setValue(CommonValue.getUserId(), forKey: "userId")
  447. let http = CommonValue.getHttp()
  448. http.get(url, parameters: params, progress: nil, success: {[weak self] (_, json1) -> Void in
  449. let json = json1 as! NSDictionary
  450. print(json)
  451. let succeed = json.object(forKey: "statusCode") as! Int
  452. if succeed == 200 {
  453. if self!.currentPage == 1 {
  454. self!.arrData.removeAllObjects()
  455. }
  456. let dataInfo = json["data"] as? NSDictionary
  457. if dataInfo != nil {
  458. self!.dicDataList.setDic(dic: dataInfo!)
  459. let array = dataInfo!["resultList"] as? NSArray
  460. if array != nil {
  461. for dic in array! {
  462. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  463. self!.arrData.add(dicNew)
  464. }
  465. }
  466. } else {
  467. let array = json["data"] as? NSArray
  468. if array != nil {
  469. for dic in array! {
  470. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  471. self!.arrData.add(dicNew)
  472. }
  473. }
  474. }
  475. let dataS = json["dataSize"] as? NSDictionary
  476. if dataS != nil {
  477. self?.dataSize = dataS
  478. }
  479. self!.returnData(tag: tag)
  480. } else {
  481. self!.returnError(tag: tag, type: "\(succeed)")
  482. if self!.isAlertError {
  483. SVProgressHUD.showError(withStatus: json.object(forKey: "message") as? String)
  484. }
  485. }
  486. if self!.arrData.count > 0 {
  487. self!.hiddenNoDataViewForTableView(tableView: tableView)
  488. } else {
  489. self!.showNoDataViewForTableView(tableView: tableView)
  490. }
  491. if tableView.mj_header != nil {
  492. tableView.mj_header?.endRefreshing()
  493. }
  494. if tableView.mj_footer != nil {
  495. tableView.mj_footer?.endRefreshing()
  496. }
  497. }, failure: { (_, err) -> Void in
  498. if tableView.mj_header != nil {
  499. tableView.mj_header?.endRefreshing()
  500. }
  501. if tableView.mj_footer != nil {
  502. tableView.mj_footer?.endRefreshing()
  503. }
  504. CommonUntils.alertError(error: err as NSError)
  505. self.returnError(tag: tag, type: "9999")
  506. })
  507. }
  508. func loadDataListForCollectionView(url: String, params: NSMutableDictionary, collectionView: UICollectionView, tag: Int) {
  509. isAlertError = true
  510. if self.currentPage == 1 {
  511. self.arrData.removeAllObjects()
  512. }
  513. params.setValue(self.currentPage, forKey: "pageNumber")
  514. params.setValue(self.pageSize, forKey: "pageSize")
  515. print(params)
  516. let http = CommonValue.getHttp()
  517. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  518. let json = json1 as! NSDictionary
  519. print(json)
  520. let succeed = json.object(forKey: "succeed") as! String
  521. if succeed == "000" {
  522. if self.currentPage == 1 {
  523. self.arrData.removeAllObjects()
  524. }
  525. let dataInfo = json["dataInfo"] as? NSDictionary
  526. if dataInfo != nil {
  527. let array = dataInfo!["dataList"] as? NSArray
  528. if array != nil {
  529. for dic in array! {
  530. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  531. self.arrData.add(dicNew)
  532. }
  533. }
  534. } else {
  535. let array = json["dataInfo"] as? NSArray
  536. if array != nil {
  537. for dic in array! {
  538. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  539. self.arrData.add(dicNew)
  540. }
  541. }
  542. }
  543. self.returnData(tag: tag)
  544. } else {
  545. self.returnError(tag: tag, type: succeed)
  546. if self.isAlertError {
  547. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  548. }
  549. }
  550. // if(self.arrData.count > 0)
  551. // {
  552. // self.hiddenNoDataViewForTableView(tableView: tableView)
  553. // }
  554. // else
  555. // {
  556. // self.showNoDataViewForTableView(tableView: tableView)
  557. // }
  558. if collectionView.mj_header != nil {
  559. collectionView.mj_header?.endRefreshing()
  560. }
  561. if collectionView.mj_footer != nil {
  562. collectionView.mj_footer?.endRefreshing()
  563. }
  564. }, failure: { (_, err) -> Void in
  565. if collectionView.mj_header != nil {
  566. collectionView.mj_header?.endRefreshing()
  567. }
  568. if collectionView.mj_footer != nil {
  569. collectionView.mj_footer?.endRefreshing()
  570. }
  571. CommonUntils.alertError(error: err as NSError)
  572. self.returnError(tag: tag, type: "9999")
  573. })
  574. }
  575. func TloadDataListForCollectionView(url: String, params: NSMutableDictionary, collectionView: UICollectionView, tag: Int) {
  576. isAlertError = true
  577. if self.currentPage == 1 {
  578. self.arrData.removeAllObjects()
  579. }
  580. params.setValue(self.currentPage, forKey: "currentPage")
  581. params.setValue(self.pageSize, forKey: "showCount")
  582. print(params)
  583. let http = CommonValue.getHttp()
  584. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  585. let json = json1 as! NSDictionary
  586. print(json)
  587. let succeed = json.object(forKey: "statusCode") as! Int
  588. if succeed == 200 {
  589. if self.currentPage == 1 {
  590. self.arrData.removeAllObjects()
  591. }
  592. let dataInfo = json["data"] as? NSDictionary
  593. if dataInfo != nil {
  594. let array = dataInfo!["resultList"] as? NSArray
  595. if array != nil {
  596. for dic in array! {
  597. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  598. self.arrData.add(dicNew)
  599. }
  600. }
  601. } else {
  602. let array = json["dataInfo"] as? NSArray
  603. if array != nil {
  604. for dic in array! {
  605. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  606. self.arrData.add(dicNew)
  607. }
  608. }
  609. }
  610. self.returnData(tag: tag)
  611. } else {
  612. self.returnError(tag: tag, type: "\(succeed)")
  613. if self.isAlertError {
  614. SVProgressHUD.showError(withStatus: json.object(forKey: "message") as? String)
  615. }
  616. }
  617. // if(self.arrData.count > 0)
  618. // {
  619. // self.hiddenNoDataViewForTableView(tableView: tableView)
  620. // }
  621. // else
  622. // {
  623. // self.showNoDataViewForTableView(tableView: tableView)
  624. // }
  625. if collectionView.mj_header != nil {
  626. collectionView.mj_header?.endRefreshing()
  627. }
  628. if collectionView.mj_footer != nil {
  629. collectionView.mj_footer?.endRefreshing()
  630. }
  631. }, failure: { (_, err) -> Void in
  632. if collectionView.mj_header != nil {
  633. collectionView.mj_header?.endRefreshing()
  634. }
  635. if collectionView.mj_footer != nil {
  636. collectionView.mj_footer?.endRefreshing()
  637. }
  638. CommonUntils.alertError(error: err as NSError)
  639. self.returnError(tag: tag, type: "9999")
  640. })
  641. }
  642. func loadDataInfo(url: String, params: NSMutableDictionary, tag: Int, reDic: NSMutableDictionary) {
  643. isAlertError = true
  644. let http = CommonValue.getHttp()
  645. MBProgressHUD.showAdded(to: self.view, animated: true)
  646. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  647. let json = json1 as! NSDictionary
  648. print(json)
  649. let succeed = json.object(forKey: "succeed") as! String
  650. if succeed == "000" {
  651. self.dicBackDataAnyObject = json["dataInfo"] as AnyObject
  652. let dataInfo = json["dataInfo"] as? NSDictionary
  653. if dataInfo != nil {
  654. reDic.setDictionary(dataInfo as! [AnyHashable: Any])
  655. }
  656. self.returnData(tag: tag)
  657. } else {
  658. self.returnError(tag: tag, type: succeed)
  659. if self.isAlertError {
  660. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  661. }
  662. }
  663. MBProgressHUD.hide(for: self.view, animated: true)
  664. }, failure: { (_, err) -> Void in
  665. MBProgressHUD.hide(for: self.view, animated: true)
  666. CommonUntils.alertError(error: err as NSError)
  667. self.returnError(tag: tag, type: "9999")
  668. })
  669. }
  670. func loadDataInfo(url: String, params: NSMutableDictionary, tag: Int) {
  671. isAlertError = true
  672. let http = CommonValue.getHttp()
  673. MBProgressHUD.showAdded(to: self.view, animated: true)
  674. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  675. let json = json1 as! NSDictionary
  676. print(json)
  677. let succeed = json.object(forKey: "succeed") as! String
  678. if succeed == "000"||succeed == "0000" {
  679. let dataInfo = json["dataInfo"] as? NSDictionary
  680. if dataInfo != nil {
  681. self.dicData.setDictionary(dataInfo as! [AnyHashable: Any])
  682. }
  683. self.returnData(tag: tag)
  684. } else {
  685. self.returnError(tag: tag, type: succeed)
  686. if self.isAlertError {
  687. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  688. }
  689. }
  690. MBProgressHUD.hide(for: self.view, animated: true)
  691. }, failure: { (_, err) -> Void in
  692. MBProgressHUD.hide(for: self.view, animated: true)
  693. CommonUntils.alertError(error: err as NSError)
  694. self.returnError(tag: tag, type: "9999")
  695. })
  696. }
  697. func TloadDataInfo(url: String, params: NSMutableDictionary, tag: Int) {
  698. isAlertError = true
  699. let http = CommonValue.getHttp()
  700. MBProgressHUD.showAdded(to: self.view, animated: true)
  701. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  702. let json = json1 as! NSDictionary
  703. print(json)
  704. let succeed = json.object(forKey: "statusCode") as! Int
  705. if succeed == 200 {
  706. let dataInfo = json["data"] as? NSDictionary
  707. if dataInfo != nil {
  708. self.dicData.setDictionary(dataInfo as! [AnyHashable: Any])
  709. }
  710. self.returnData(tag: tag)
  711. } else {
  712. if self.isAlertError {
  713. SVProgressHUD.showError(withStatus: json.object(forKey: "message") as? String)
  714. }
  715. }
  716. MBProgressHUD.hide(for: self.view, animated: true)
  717. }, failure: { (_, err) -> Void in
  718. MBProgressHUD.hide(for: self.view, animated: true)
  719. CommonUntils.alertError(error: err as NSError)
  720. self.returnError(tag: tag, type: "9999")
  721. })
  722. }
  723. func submitData(url: String, params: NSMutableDictionary, tag: Int) {
  724. isAlertError = true
  725. let http = CommonValue.getHttp()
  726. MBProgressHUD.showAdded(to: self.view, animated: true)
  727. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  728. let json = json1 as! NSDictionary
  729. print(json)
  730. let succeed = json.object(forKey: "succeed") as! String
  731. if succeed == "000" {
  732. self.dicBackDataAnyObject = json["dataInfo"] as AnyObject
  733. let dataInfo = json["dataInfo"] as? NSDictionary
  734. if dataInfo != nil {
  735. self.dicBackData.setDictionary(dataInfo as! [AnyHashable: Any])
  736. self.dicBackLoData = dataInfo
  737. }
  738. self.returnData(tag: tag)
  739. } else {
  740. self.returnError(tag: tag, type: succeed)
  741. if self.isAlertError {
  742. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  743. }
  744. }
  745. MBProgressHUD.hide(for: self.view, animated: true)
  746. }, failure: { (_, err) -> Void in
  747. MBProgressHUD.hide(for: self.view, animated: true)
  748. CommonUntils.alertError(error: err as NSError)
  749. self.returnError(tag: tag, type: "9999")
  750. })
  751. }
  752. func submitDatMachineInforList(url: String, params: NSMutableDictionary, tableView: UITableView, tag: Int) {
  753. isAlertError = true
  754. if self.currentPage == 1 {
  755. self.arrData.removeAllObjects()
  756. }
  757. params.setValue(self.currentPage, forKey: "currentPage")
  758. params.setValue(self.pageSize, forKey: "showCount")
  759. let http = CommonValue.getHttp()
  760. http.get(url, parameters: params, progress: nil, success: {[weak self] (_, json1) -> Void in
  761. let json = json1 as! NSDictionary
  762. print(json)
  763. let succeed = json.object(forKey: "success") as! Bool
  764. if succeed {
  765. if self!.currentPage == 1 {
  766. self!.arrData.removeAllObjects()
  767. }
  768. let dataInfo = json["data"] as? NSDictionary
  769. if dataInfo != nil {
  770. self!.dicDataList.setDic(dic: dataInfo!)
  771. let array = dataInfo!["machineInforList"] as? NSArray
  772. if array != nil {
  773. for dic in array! {
  774. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  775. self!.arrData.add(dicNew)
  776. }
  777. }
  778. } else {
  779. let array = json["data"] as? NSArray
  780. if array != nil {
  781. for dic in array! {
  782. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  783. self!.arrData.add(dicNew)
  784. }
  785. }
  786. }
  787. let dataS = json["dataSize"] as? NSDictionary
  788. if dataS != nil {
  789. self?.dataSize = dataS
  790. }
  791. self!.returnData(tag: tag)
  792. } else {
  793. self!.returnError(tag: tag, type: "")
  794. if self!.isAlertError {
  795. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  796. }
  797. }
  798. if self!.arrData.count > 0 {
  799. self!.hiddenNoDataViewForTableView(tableView: tableView)
  800. } else {
  801. self!.showNoDataViewForTableView(tableView: tableView)
  802. }
  803. if tableView.mj_header != nil {
  804. tableView.mj_header?.endRefreshing()
  805. }
  806. if tableView.mj_footer != nil {
  807. tableView.mj_footer?.endRefreshing()
  808. }
  809. }, failure: { (_, err) -> Void in
  810. if tableView.mj_header != nil {
  811. tableView.mj_header?.endRefreshing()
  812. }
  813. if tableView.mj_footer != nil {
  814. tableView.mj_footer?.endRefreshing()
  815. }
  816. CommonUntils.alertError(error: err as NSError)
  817. self.returnError(tag: tag, type: "9999")
  818. })
  819. }
  820. func submitDatMachineInforNumdic(url: String, params: NSMutableDictionary, tag: Int) {
  821. isAlertError = true
  822. let http = CommonValue.getHttp()
  823. MBProgressHUD.showAdded(to: self.view, animated: true)
  824. http.get(url, parameters: params, progress: nil, success: { (_, json1) -> Void in
  825. let json = json1 as! NSDictionary
  826. print(json)
  827. let succeed = json.object(forKey: "success") as! Bool
  828. if succeed {
  829. if self.currentPage == 1 {
  830. self.arrDataMj.removeAllObjects()
  831. }
  832. let dataInfo = json["data"] as? NSDictionary
  833. if dataInfo != nil {
  834. let array = dataInfo!["dataList"] as? NSArray
  835. if array != nil {
  836. for dic in array! {
  837. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  838. self.arrDataMj.add(dicNew)
  839. }
  840. }
  841. } else {
  842. let array = json["data"] as? NSArray
  843. if array != nil {
  844. for dic in array! {
  845. let dicNew = NSMutableDictionary(dictionary: dic as! NSDictionary)
  846. self.arrDataMj.add(dicNew)
  847. }
  848. }
  849. }
  850. self.returnData(tag: tag)
  851. } else {
  852. self.returnError(tag: tag, type: "")
  853. if self.isAlertError {
  854. SVProgressHUD.showError(withStatus: json.object(forKey: "sucInfo") as? String)
  855. }
  856. }
  857. MBProgressHUD.hide(for: self.view, animated: true)
  858. }, failure: { (_, err) -> Void in
  859. MBProgressHUD.hide(for: self.view, animated: true)
  860. CommonUntils.alertError(error: err as NSError)
  861. self.returnError(tag: tag, type: "9999")
  862. })
  863. }
  864. func returnData(tag: Int) {
  865. }
  866. /// type:9999是异常 其他是后台返回的状态如 001 002
  867. func returnError(tag: Int, type: String) {
  868. }
  869. // MARK: =========定位模块 ========= start ======
  870. var updateLocationCount = 0
  871. var locationManager: CLLocationManager!
  872. /// 开始定位 成功回调:returnLocationData
  873. func startLocation() {
  874. if locationManager == nil {
  875. locationManager = CLLocationManager()
  876. locationManager.delegate = self
  877. locationManager.desiredAccuracy = kCLLocationAccuracyBest
  878. // kCLLocationAccuracyBest 精确度最佳
  879. // kCLLocationAccuracynearestTenMeters 精确度10m以内
  880. // kCLLocationAccuracyHundredMeters 精确度100m以内
  881. // kCLLocationAccuracyKilometer 精确度1000m以内
  882. // kCLLocationAccuracyThreeKilometers 精确度3000m以内
  883. }
  884. locationManager.requestWhenInUseAuthorization()
  885. updateLocationCount = 0
  886. locationManager.startUpdatingLocation()
  887. }
  888. /// 返回定位成功的坐标 latitude:纬度 longitude:经度 location:用作取详情地址信息
  889. func returnLocationData(latitude: Double, coordinate: Double, location: CLLocation) {
  890. }
  891. /// 定位失败返回
  892. func returnLocationError(error: Error) {
  893. }
  894. func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
  895. let location = locations.last
  896. if location != nil && location!.coordinate.latitude > 0 && location!.coordinate.longitude > 0 {
  897. let coordinate = location!.coordinate
  898. print("纬度:\(coordinate.latitude) 经度:\(coordinate.longitude)")
  899. returnLocationData(latitude: coordinate.longitude, coordinate: coordinate.longitude, location: location!)
  900. locationManager.stopUpdatingLocation()
  901. } else {
  902. if updateLocationCount > 20 {
  903. locationManager.stopUpdatingLocation()
  904. }
  905. updateLocationCount += 1
  906. }
  907. }
  908. func locationManager(_ manager: CLLocationManager, didFailWithError error: Error) {
  909. returnLocationError(error: error)
  910. locationManager.stopUpdatingLocation()
  911. }
  912. ///根据位置信息获取详情的街道地址 成功返回:returnLoctionDetailInfo
  913. func getLoationDetailInfo(location: CLLocation) {
  914. let clGeocoder = CLGeocoder()
  915. clGeocoder.reverseGeocodeLocation(location, completionHandler: { (
  916. placemarks, _) in
  917. var isWin = false
  918. if placemarks != nil {
  919. for dic in placemarks! {
  920. let addressDic = dic.addressDictionary
  921. //print(addressDic);
  922. if addressDic != nil {
  923. print(addressDic!)
  924. if addressDic!["State"] as? String != nil && addressDic!["City"] as? String != nil && addressDic!["SubLocality"] as? String != nil && addressDic!["Name"] as? String != nil {
  925. isWin = true
  926. self.returnLoctionDetailInfo(dic: addressDic! as NSDictionary, ad1: addressDic!["State"] as! String, ad2: addressDic!["City"] as! String, ad3: addressDic!["SubLocality"] as! String, ad4: addressDic!["Name"] as! String)
  927. }
  928. break
  929. }
  930. }
  931. }
  932. if !isWin {
  933. self.returnLoctionDetailError()
  934. }
  935. })
  936. }
  937. /// 获取详细信息出错回调
  938. func returnLoctionDetailInfo(dic: NSDictionary, ad1: String, ad2: String, ad3: String, ad4: String) {
  939. }
  940. func returnLoctionDetailError() {
  941. }
  942. func printLog(_ dic: Any) {
  943. if isPrintLog {
  944. print(dic)
  945. }
  946. }
  947. deinit {
  948. if isPrintLog {
  949. print("=====deinit==\(self.classForCoder)==")
  950. }
  951. }
  952. ///设置导航栏透明,且不占空间
  953. func setNavTranslucent(isTran: Bool) {
  954. if isTran {
  955. self.automaticallyAdjustsScrollViewInsets = false
  956. self.navigationController?.navigationBar.isTranslucent = true
  957. self.navigationController?.navigationBar.backgroundColor = UIColor.clear
  958. self.navigationController?.navigationBar.tintColor = UIColor.clear
  959. self.navigationController?.navigationBar.shadowImage = UIImage()
  960. self.navigationController?.navigationBar.setBackgroundImage(UIImage(), for: .default)
  961. } else {
  962. self.navigationController?.navigationBar.isTranslucent = false
  963. // if(CommonUntils.isX())
  964. // {
  965. // self.navigationController?.navigationBar.setBackgroundImage(UIImage(named:"a_titleX"), for: .default)
  966. // }
  967. // else
  968. // {
  969. self.navigationController?.navigationBar.setBackgroundImage(UIImage(named: "a_title"), for: .default)
  970. // }
  971. }
  972. }
  973. /// 重新加载后更新用户信息
  974. @objc func notiReloadUser(noti: NSNotification) {
  975. }
  976. func initCusServiceBackButton(viewController: UIViewController) {
  977. let backBtn = UIButton(type: UIButton.ButtonType.custom)
  978. backBtn.frame = CGRect(x: 0, y: 0, width: 45, height: 50)
  979. backBtn.setImage(UIImage(named: "ion_return-arrow"), for: .normal)
  980. backBtn.contentHorizontalAlignment = .left
  981. backBtn.addTarget(self, action: #selector(self.handleBack), for: UIControl.Event.touchUpInside)
  982. let backBarBtnItem=UIBarButtonItem(customView: backBtn)
  983. viewController.navigationItem.leftBarButtonItem = backBarBtnItem
  984. viewController.navigationItem.rightBarButtonItem = UIBarButtonItem()
  985. }
  986. // MARK: =========定位模块 ============ end ======
  987. override func viewWillAppear(_ animated: Bool) {
  988. super.viewWillAppear(animated)
  989. appDelegate.setNavigationBarHidden(isHidden: false)
  990. NotificationCenter.default.addObserver(self, selector: #selector(self.notiReloadUser(noti:)), name: NSNotification.Name(rawValue: "noti_reload_user"), object: nil)
  991. appDelegate.initSystem()
  992. }
  993. override func viewWillDisappear(_ animated: Bool) {
  994. super.viewWillDisappear(animated)
  995. NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: "noti_reload_user"), object: nil)
  996. }
  997. override func didReceiveMemoryWarning() {
  998. super.didReceiveMemoryWarning()
  999. // Dispose of any resources that can be recreated.
  1000. }
  1001. // required init?(coder aDecoder: NSCoder) {
  1002. // fatalError("init(coder:) has not been implemented")
  1003. // }
  1004. //
  1005. // override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  1006. // let className = String(describing: type(of:self ));
  1007. // if(Bundle.main.path(forResource: className, ofType: "xib") == nil)
  1008. // {
  1009. // super.init(nibName: nil, bundle: nil);
  1010. // }
  1011. // else
  1012. // {
  1013. // super.init(nibName:className , bundle: nil)
  1014. // }
  1015. //
  1016. // }
  1017. /*
  1018. // MARK: - Navigation
  1019. // In a storyboard-based application, you will often want to do a little preparation before navigation
  1020. override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
  1021. // Get the new view controller using segue.destinationViewController.
  1022. // Pass the selected object to the new view controller.
  1023. }
  1024. */
  1025. }