AddressListViewController.swift 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. //
  2. // AddressListViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by machaochao on 2020/10/15.
  6. // Copyright © 2020 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class AddressListViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. //var tableView: UITableView!
  11. @IBOutlet weak var tableView: UITableView!
  12. @IBOutlet weak var addBtn: UIButton!
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. initNavLeftBackButton()
  16. self.title = "我的地址"
  17. tableView.register(UINib(nibName: "MyAddressTableViewCell", bundle: nil), forCellReuseIdentifier: "MyAddressTableViewCell")
  18. tableView.setSizeHeight(height: kScreenHeight-navheight-100.0)
  19. tableView.delegate = self
  20. tableView.dataSource = self
  21. tableView.separatorStyle = .none
  22. tableView.showsVerticalScrollIndicator = false
  23. tableView.estimatedRowHeight = 120
  24. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  25. self!.currentPage = 1
  26. self!.loadData()
  27. })
  28. tableView.mj_header?.lastUpdatedTimeKey = "MyAddressTableViewCell"
  29. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  30. self!.currentPage += 1
  31. self!.loadData()
  32. })
  33. tableView.mj_header?.beginRefreshing()
  34. addBtn.layer.cornerRadius = 15
  35. addBtn.layer.masksToBounds = true
  36. // Do any additional setup after loading the view.
  37. }
  38. var dataArray = NSArray.init()
  39. func loadData() {
  40. let params = NSMutableDictionary()
  41. params.setValue(CommonValue.getUserId(), forKey: "userId")
  42. params.setValue(self.currentPage, forKey: "currentPage")
  43. params.setValue(10, forKey: "showCount")
  44. let http = AFHTTPSessionManager()
  45. http.get(RequestURL.getUserAddressList, parameters: params, progress: { (_) in
  46. }, success: { (operation, json) in
  47. print(json as Any)
  48. let success = (json as! NSDictionary).object(forKey: "statusCode") as! Int
  49. if success == 200 {
  50. let dic = (json as! NSDictionary).object(forKey: "data") as! NSDictionary
  51. self.dataArray = dic["addressList"]as!NSArray
  52. self.tableView.reloadData()
  53. }
  54. self.tableView.mj_header?.endRefreshing()
  55. self.tableView.mj_footer?.endRefreshing()
  56. }) { (_, _) in
  57. }
  58. }
  59. // MARK: TABLEVLEW 实现
  60. func numberOfSections(in tableView: UITableView) -> Int {
  61. return 1
  62. }
  63. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  64. return self.dataArray.count
  65. // return 10;
  66. }
  67. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  68. return 120
  69. }
  70. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  71. let cell = tableView.dequeueReusableCell(withIdentifier: "MyAddressTableViewCell", for: indexPath as IndexPath) as! MyAddressTableViewCell
  72. //cell.lblTitle.text = getString(indexPath.row, key: "Name")
  73. let dic = self.dataArray[indexPath.row]as!NSDictionary
  74. cell.setBtn.addTarget(self, action: #selector(self.setMoren(_:)), for: .touchUpInside)
  75. cell.setBtn.tag = indexPath.row
  76. cell.changeBtn.addTarget(self, action: #selector(self.changeAd(_:)), for: .touchUpInside)
  77. cell.changeBtn.tag = indexPath.row
  78. cell.delectBtn.addTarget(self, action: #selector(self.delectAd(_:)), for: .touchUpInside)
  79. cell.delectBtn.tag = indexPath.row
  80. cell.loadDataWith(dic: dic)
  81. return cell
  82. }
  83. @IBAction func addBtnTouch(_ sender: Any) {
  84. let vc = SelectedAddressViewController()
  85. toViewController(viewController: vc)
  86. }
  87. @objc func setMoren(_ sender: UIButton) {
  88. let dic = self.dataArray[sender.tag]as!NSDictionary
  89. let params = NSMutableDictionary()
  90. params.setValue(CommonValue.getUserId(), forKey: "userId")
  91. params.setValue(dic["address"]as!String, forKey: "address")
  92. if dic.getString(key: "is_default") == "1"{
  93. params.setValue(0, forKey: "isDefault")
  94. } else {
  95. params.setValue(1, forKey: "isDefault")
  96. }
  97. params.setValue(dic["province_id"]as!String, forKey: "provinceId")
  98. params.setValue(dic["province_name"]as!String, forKey: "provinceName")
  99. params.setValue(dic["city_id"]as!String, forKey: "cityId")
  100. params.setValue(dic["city_name"]as!String, forKey: "cityName")
  101. params.setValue(dic["area_id"]as!String, forKey: "areaId")
  102. params.setValue(dic["area_name"]as!String, forKey: "areaName")
  103. params.setValue(dic["link_name"]as!String, forKey: "linkName")
  104. params.setValue(dic["link_phone"]as!String, forKey: "linkPhone")
  105. params.setValue(dic["id"]as!String, forKey: "id")
  106. let http = AFHTTPSessionManager()
  107. http.post(RequestURL.updateUserAddress, parameters: params, progress: { (_) in
  108. }, success: { (operation, json) in
  109. print(json as Any)
  110. let success = (json as! NSDictionary).object(forKey: "statusCode") as! Int
  111. if success == 200 {
  112. // let dic = (json as! NSDictionary).object(forKey: "data") as! NSDictionary
  113. //
  114. self.loadData()
  115. }
  116. }) { (_, _) in
  117. }
  118. }
  119. @objc func changeAd(_ sender: UIButton) {
  120. let dic = self.dataArray[sender.tag]as!NSDictionary
  121. let vc = SelectedAddressViewController()
  122. vc.dicAddress.setDic(dic: dic)
  123. vc.dicData.setValue(dic["link_name"], forKey: "name")
  124. vc.dicData.setValue(dic["link_phone"], forKey: "phone")
  125. vc.dicData.setValue("\(dic["province_name"]as!String)\(dic["city_name"]as!String)\(dic["area_name"]as!String))", forKey: "address1")
  126. vc.dicData.setValue(dic["address"], forKey: "address2")
  127. toViewController(viewController: vc)
  128. }
  129. @objc func delectAd(_ sender: UIButton) {
  130. let dic = self.dataArray[sender.tag]as!NSDictionary
  131. if dic["is_default"]as!String == "1"{
  132. if self.dataArray.count == 1 {
  133. } else {
  134. let alert = UIAlertController.init(title: "请先取消默认地址再删除!", message: "", preferredStyle: .alert)
  135. let confirmaction = UIAlertAction.init(title: "确定", style: .default) { (_) in
  136. }
  137. let cancleAction = UIAlertAction.init(title: "取消", style: .cancel, handler: nil)
  138. alert.addAction(confirmaction)
  139. alert.addAction(cancleAction)
  140. self.present(alert, animated: true, completion: nil)
  141. }
  142. }
  143. let alert = UIAlertController.init(title: "您确定要删除这个地址吗?", message: "", preferredStyle: .alert)
  144. let confirmaction = UIAlertAction.init(title: "确定", style: .default) { (_) in
  145. let dic = self.dataArray[sender.tag]as!NSDictionary
  146. self.delectAddress(adid: dic["id"]as!String)
  147. }
  148. let cancleAction = UIAlertAction.init(title: "取消", style: .cancel, handler: nil)
  149. alert.addAction(confirmaction)
  150. alert.addAction(cancleAction)
  151. self.present(alert, animated: true, completion: nil)
  152. }
  153. func delectAddress(adid: String) {
  154. let params = NSMutableDictionary()
  155. params.setValue(CommonValue.getUserId(), forKey: "userId")
  156. params.setValue(adid, forKey: "DATA_IDS")
  157. let http = AFHTTPSessionManager()
  158. http.post(RequestURL.deleteUserAddress, parameters: params, progress: { (_) in
  159. }, success: { (operation, json) in
  160. print(json as Any)
  161. let success = (json as! NSDictionary).object(forKey: "statusCode") as! Int
  162. if success == 200 {
  163. // let dic = (json as! NSDictionary).object(forKey: "data") as! NSDictionary
  164. self.loadData()
  165. }
  166. }) { (_, _) in
  167. }
  168. }
  169. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  170. // let vc = OrderDetailViewController();
  171. // //let dicProduct = (self.arrData[indexPath.row] as! NSDictionary)["product"] as! NSDictionary;
  172. // vc.orderId = self.arrData.getString(index: indexPath.row, key: "id")
  173. // //vc.dicData.setDictionary((self.arrData[indexPath.row] as! NSDictionary) as! [AnyHashable : Any])
  174. // toViewController(viewController: vc);
  175. }
  176. /*
  177. // MARK: - Navigation
  178. // In a storyboard-based application, you will often want to do a little preparation before navigation
  179. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  180. // Get the new view controller using segue.destination.
  181. // Pass the selected object to the new view controller.
  182. }
  183. */
  184. override func viewWillAppear(_ animated: Bool) {
  185. super.viewWillAppear(animated)
  186. self.currentPage = 1
  187. self.loadData()
  188. }
  189. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  190. super.init(nibName: "AddressListViewController", bundle: nil)
  191. }
  192. required init?(coder aDecoder: NSCoder) {
  193. fatalError("init(coder:) has not been implemented")
  194. }
  195. }