ShopListViewController.swift 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. //
  2. // ShopListViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/30.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ShopListViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var tableView: UITableView!
  11. ///0:未提交 1:待修改 2:审核中 3:审核通过
  12. var type = 0
  13. var typeTitle = ["未提交", "待修改", "审核中", "审核通过"]
  14. var status = ["", "2", "0", "1"]
  15. override func viewDidLoad() {
  16. super.viewDidLoad()
  17. self.title = typeTitle[type]
  18. initNavLeftBackButton()
  19. tableView.register(UINib(nibName: "ShopListTableViewCell", bundle: nil), forCellReuseIdentifier: "ShopListTableViewCell")
  20. tableView.delegate = self
  21. tableView.dataSource = self
  22. tableView.separatorStyle = .none
  23. tableView.showsVerticalScrollIndicator = false
  24. tableView.estimatedRowHeight = 100
  25. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  26. self!.currentPage = 1
  27. self!.loadData()
  28. })
  29. if type != 0 {
  30. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  31. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  32. self!.currentPage += 1
  33. self!.loadData()
  34. })
  35. }
  36. tableView.mj_header?.beginRefreshing()
  37. }
  38. // MARK: =============加载数据===============
  39. func loadData() {
  40. if type == 0 {
  41. self.arrData.removeAllObjects()
  42. let local = CommonValue.getDefaultUserInfoForObject(key: "common_local_businfo")
  43. if local != nil && (local as? NSArray) != nil && (local as! NSArray).count > 0 {
  44. self.arrData.addObjects(from: ((local as! NSArray) as! [Any]))
  45. }
  46. if self.arrData.count > 0 {
  47. self.hiddenNoDataViewForTableView(tableView: tableView)
  48. } else {
  49. self.showNoDataViewForTableView(tableView: tableView)
  50. }
  51. tableView.mj_header?.endRefreshing()
  52. returnData(tag: 1001)
  53. } else {
  54. let url = RequestURL.myMerchantList
  55. let params = NSMutableDictionary()
  56. params.setValue(CommonValue.getUserId(), forKey: "userId")
  57. params.setValue(status[type], forKey: "status")
  58. params.setValue("", forKey: "likeStr")
  59. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  60. }
  61. }
  62. override func returnData(tag: Int) {
  63. if tag == 1001 {
  64. tableView.reloadData()
  65. }
  66. }
  67. override func returnError(tag: Int, type: String) {
  68. }
  69. // MARK: TABLEVLEW 实现
  70. func numberOfSections(in tableView: UITableView) -> Int {
  71. return 1
  72. }
  73. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  74. return self.arrData.count
  75. }
  76. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  77. return 75
  78. }
  79. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  80. let cell = tableView.dequeueReusableCell(withIdentifier: "ShopListTableViewCell", for: indexPath as IndexPath) as! ShopListTableViewCell
  81. if getString(current: indexPath.row, key: "machineTypeCN") != "" {
  82. cell.lblName.text = "\(getString(current: indexPath.row, key: "companyName"))(\(getString(current: indexPath.row, key: "machineTypeCN")))"
  83. } else {
  84. cell.lblName.text = "\(getString(current: indexPath.row, key: "companyName"))"
  85. }
  86. // cell.lblName.text = getString(current: indexPath.row, key: "companyName")
  87. cell.lblDate.text = getString(current: indexPath.row, key: "createtime")
  88. // if(type == 3)
  89. // {
  90. // cell.btnBind.isHidden = false;
  91. // cell.btnBind.tag = indexPath.row;
  92. // cell.btnBind.addTarget(self, action: #selector(btnBindClick), for: .touchUpInside);
  93. // }
  94. return cell
  95. }
  96. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  97. if indexPath.row >= arrData.count {
  98. return
  99. }
  100. let machineTypeId = getString(current: indexPath.row, key: "machineTypeId")
  101. if machineTypeId == "1" {
  102. let vc = MyShopDetailTypeViewController()
  103. vc.id = getString(current: indexPath.row, key: "id")
  104. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  105. toViewController(viewController: vc)
  106. } else {
  107. let vc = MyShopDetailViewController()
  108. vc.id = getString(current: indexPath.row, key: "id")
  109. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  110. toViewController(viewController: vc)
  111. }
  112. return
  113. ///0:未提交 1:待修改 2:审核中 3:审核通过
  114. if type == 0 {
  115. let dic = self.arrData[indexPath.row] as! NSDictionary
  116. let entity = ShopOpenEntity()
  117. entity.mj_setKeyValues(dic)
  118. let vc = OpenDetailViewController()
  119. vc.localCurrnetIndex = indexPath.row
  120. vc.shopOpen = entity
  121. vc.isSaveLocal = true
  122. toViewController(viewController: vc)
  123. } else if type == 1 {
  124. let machineTypeId = getString(current: indexPath.row, key: "machineTypeId")
  125. if machineTypeId != "1" {
  126. let dic = self.arrData[indexPath.row] as! NSDictionary
  127. let vc = OpenDetailViewController()
  128. vc.type = 1
  129. vc.isSaveLocal = false
  130. vc.shopOpen = getShopEntity(dic: dic)
  131. toViewController(viewController: vc)
  132. }
  133. } else if type == 2 {
  134. let machineTypeId = getString(current: indexPath.row, key: "machineTypeId")
  135. if machineTypeId == "1" {
  136. let vc = MyShopDetailTypeViewController()
  137. vc.id = getString(current: indexPath.row, key: "id")
  138. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  139. toViewController(viewController: vc)
  140. } else {
  141. let dic = self.arrData[indexPath.row] as! NSDictionary
  142. let vc = OpenDetailViewController()
  143. vc.isMod = false
  144. vc.shopOpen = getShopEntity(dic: dic)
  145. toViewController(viewController: vc)
  146. }
  147. } else if type == 3 {
  148. let machineTypeId = getString(current: indexPath.row, key: "machineTypeId")
  149. if (machineTypeId == "1" || machineTypeId == "777" || machineTypeId == "888" || machineTypeId == "999" || machineTypeId == "9999"){
  150. let vc = MyShopDetailTypeViewController()
  151. vc.id = getString(current: indexPath.row, key: "id")
  152. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  153. toViewController(viewController: vc)
  154. } else {
  155. let vc = MyShopDetailViewController()
  156. vc.id = getString(current: indexPath.row, key: "id")
  157. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  158. toViewController(viewController: vc)
  159. }
  160. }
  161. }
  162. @objc func btnBindClick(btn: UIButton) {
  163. let vc = BindDeviceViewController()
  164. vc.merchantsId = getString(current: btn.tag, key: "id")
  165. self.toViewController(viewController: vc)
  166. }
  167. func getShopEntity(dic: NSDictionary) -> ShopOpenEntity {
  168. let shopOpen = ShopOpenEntity()
  169. shopOpen.id = dic.getString(key: "id")
  170. shopOpen.posId = dic.getString(key: "machineTypeId")
  171. shopOpen.posSN = dic.getString(key: "machineSnCode")
  172. shopOpen.shopType = dic.getInt(key: "busType")
  173. shopOpen.phone = dic.getString(key: "busPhone")
  174. shopOpen.companyName = dic.getString(key: "companyName")
  175. shopOpen.name = dic.getString(key: "applicantName")
  176. shopOpen.card = dic.getString(key: "applicantCard")
  177. shopOpen.cardFront = dic.getString(key: "applicantCardFront")
  178. shopOpen.cardReverse = dic.getString(key: "applicantCardReverse")
  179. shopOpen.cardHoldFront = dic.getString(key: "applicantCardHoldFront")
  180. shopOpen.otherImage = dic.getString(key: "applicantCardHoldReverse")
  181. shopOpen.addressDetail = dic.getString(key: "shopAddress")
  182. shopOpen.addressId1 = dic.getString(key: "shopProvinceId")
  183. shopOpen.addressId2 = dic.getString(key: "shopCityId")
  184. shopOpen.addressId3 = dic.getString(key: "shopAreaId")
  185. shopOpen.typeId2 = dic.getString(key: "categoryTwoId")
  186. shopOpen.typeId1 = dic.getString(key: "categoryOneId")
  187. shopOpen.productTypeId = dic.getString(key: "productTypeId")
  188. shopOpen.bankCardNo = dic.getString(key: "bankCardNumber")
  189. shopOpen.bankName = dic.getString(key: "bankAffiliatedBankCN")
  190. shopOpen.bankAddressId1 = dic.getString(key: "bankProvinceId")
  191. shopOpen.bankAddressId2 = dic.getString(key: "bankCityId")
  192. shopOpen.bankAddressId3 = dic.getString(key: "bankAreaId")
  193. shopOpen.bankAddress = dic.getString(key: "bankAreaId")
  194. shopOpen.bankAffiliatedBranchBank = dic.getString(key: "bankAffiliatedBranchBank")
  195. shopOpen.bankOpenName = dic.getString(key: "bankOpenName")
  196. shopOpen.bankCardImage = dic.getString(key: "bankCardImg")
  197. shopOpen.addressName1 = dic.getString(key: "provinceCN")
  198. shopOpen.addressName2 = dic.getString(key: "cityCN")
  199. shopOpen.addressName3 = dic.getString(key: "areaCN")
  200. shopOpen.typeName1 = dic.getString(key: "categoryOneCN")
  201. shopOpen.typeName2 = dic.getString(key: "categoryTwoCN")
  202. shopOpen.bankAddressName1 = dic.getString(key: "bankProvinceCN")
  203. shopOpen.bankAddressName2 = dic.getString(key: "bankCityCN")
  204. shopOpen.bankAddressName3 = dic.getString(key: "bankAreaCN")
  205. shopOpen.dpImages = dic.getString(key: "shopPhoto")
  206. shopOpen.shhyzImages = dic.getString(key: "shopUserPhoto")
  207. shopOpen.licenseImage = dic.getString(key: "licenseImage")
  208. shopOpen.licenseNum = dic.getString(key: "licenseNum")
  209. shopOpen.bankAccountType = dic.getString(key: "bankAccountType")
  210. shopOpen.openingPermitImage = dic.getString(key: "openingPermitImage")
  211. shopOpen.reservePhone = dic.getString(key: "reservePhone")
  212. shopOpen.bankAffiliatedBank = dic.getString(key: "bankAffiliatedBank")
  213. shopOpen.applicantCardFrontLocal = dic.getString(key: "applicantCardFrontLocal")
  214. shopOpen.applicantCardReverseLocal = dic.getString(key: "applicantCardReverseLocal")
  215. shopOpen.applicantCardHoldFrontLocal = dic.getString(key: "applicantCardHoldFrontLocal")
  216. shopOpen.bankCardImgLocal = dic.getString(key: "bankCardImgLocal")
  217. shopOpen.bankAffiliatedBranchBankCN = dic.getString(key: "bankAffiliatedBranchBankCN")
  218. shopOpen.reason = dic.getString(key: "reason")
  219. shopOpen.rate = "\(dic.getDouble(key: "rate"))"
  220. shopOpen.debitCardCostRate = "\(dic.getDouble(key: "debitCardCostRate"))"
  221. shopOpen.debitCardCapping = "\(dic.getDouble(key: "debitCardCapping"))"
  222. shopOpen.unionpayRate = "\(dic.getDouble(key: "unionpayRate"))"
  223. shopOpen.loanCardCapping = "\(dic.getDouble(key: "loanCardCapping"))"
  224. return shopOpen
  225. }
  226. override func viewWillAppear(_ animated: Bool) {
  227. super.viewWillAppear(animated)
  228. if type != 3 {
  229. tableView.mj_header?.beginRefreshing()
  230. }
  231. }
  232. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  233. super.init(nibName: "ShopListViewController", bundle: nil)
  234. }
  235. required init?(coder aDecoder: NSCoder) {
  236. fatalError("init(coder:) has not been implemented")
  237. }
  238. }