MyShopDetailViewController.swift 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. //
  2. // MyDelegateDetailViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/21.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class MyShopDetailViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
  10. @IBOutlet weak var tableView: UITableView!
  11. @IBOutlet weak var lblDate: UILabel!
  12. @IBOutlet weak var lblName: UILabel!
  13. @IBOutlet weak var imgIcon: UIImageView!
  14. var id = ""
  15. //
  16. var isKssSer: Bool = false
  17. var isHSF: Bool = false
  18. var isXW: Bool = false
  19. var arrTitle = [["商户编号", "商户姓名", "商户类型", "身份证号", "联系电话", "商户地址", "所属行业"], ["结算费率", "结算人姓名", "银行卡号", "银行名称", "所属地区", "所属支行", "预留手机号"], ["品牌名称", "产品类型", "设备SN号", "激活状态"]]
  20. var arrContent = [["", "", "", "", "", "", ""], ["", "", "", "", "", "", ""], ["", "", "", ""]]
  21. override func viewDidLoad() {
  22. super.viewDidLoad()
  23. self.title = "商户详情"
  24. initNavLeftBackButton()
  25. tableView.register(UINib(nibName: "TiXianDetailTableViewCell", bundle: nil), forCellReuseIdentifier: "TiXianDetailTableViewCell")
  26. tableView.delegate = self
  27. tableView.dataSource = self
  28. tableView.separatorStyle = .none
  29. tableView.showsVerticalScrollIndicator = false
  30. tableView.estimatedRowHeight = 100
  31. if isKssSer {
  32. arrTitle = [["商户编号", "商户姓名", "身份证号", "联系电话"], ["结算费率"], ["品牌名称", "设备SN号"]]
  33. loadDataForKss()
  34. } else {
  35. if isHSF {
  36. arrTitle = [["商户编号", "商户姓名", "身份证号", "联系电话"], ["结算费率"], ["品牌名称", "设备SN号"]]
  37. }
  38. if isXW {
  39. arrTitle = [["商户编号", "商户姓名", "身份证号", "联系电话"], ["结算费率"], ["品牌名称", "设备SN号"]]
  40. }
  41. loadData()
  42. }
  43. }
  44. // MARK: =============加载数据===============
  45. // 快益刷、快闪刷
  46. func loadDataForKss() {
  47. let url = RequestURL.myMerchantDetailKys
  48. let params = NSMutableDictionary()
  49. params.setValue(id, forKey: "id")
  50. loadDataInfo(url: url, params: params, tag: 1002)
  51. }
  52. func loadData() {
  53. if isHSF == true {
  54. let url = RequestURL.myMerchantDetailXcx
  55. let params = NSMutableDictionary()
  56. params.setValue(id, forKey: "id")
  57. loadDataInfo(url: url, params: params, tag: 1003)
  58. }else if isXW == true {
  59. let url = RequestURL.myMerchantDetailXwsy
  60. let params = NSMutableDictionary()
  61. params.setValue(id, forKey: "id")
  62. loadDataInfo(url: url, params: params, tag: 1004)
  63. }else{
  64. let url = RequestURL.myMerchantDetail
  65. let params = NSMutableDictionary()
  66. params.setValue(id, forKey: "id")
  67. loadDataInfo(url: url, params: params, tag: 1001)
  68. }
  69. }
  70. override func returnData(tag: Int) {
  71. if tag == 1001 {
  72. lblName.text = getString(key: "companyName")
  73. lblDate.text = "认证时间:\(getString(key: "createtime"))"
  74. arrContent[0][0] = getString(key: "mercNo")
  75. arrContent[0][1] = getString(key: "applicantName")
  76. let busType = getIntValue(key: "busType")
  77. arrContent[0][2] = busType == 1 ? "商户" : "个人"
  78. arrContent[0][3] = CommonValue.formatCardNum(str: getString(key: "applicantCard"))
  79. arrContent[0][4] = CommonValue.formatPhone(phone: getString(key: "busPhone"))
  80. arrContent[0][5] = "\( getString(key: "provinceCN"))\( getString(key: "cityCN"))\( getString(key: "areaCN"))\(getString(key: "shopAddress"))"
  81. arrContent[0][6] = getString(key: "categoryOneCN")
  82. //"结算费率","结算人姓名","银行卡号","银行名称","所属地区","所属支行","预留手机号"
  83. arrContent[1][0] = "\(getDoubleValue(key: "rate"))%"
  84. arrContent[1][1] = getString(key: "bankOpenName")
  85. arrContent[1][2] = CommonValue.formatCardNum(str: getString(key: "bankCardNumber"))
  86. arrContent[1][3] = getString(key: "bankAffiliatedBankCN")
  87. arrContent[1][4] = "\(getString(key: "bankProvinceCN"))\(getString(key: "bankCityCN"))\(getString(key: "bankAreaCN"))"
  88. arrContent[1][5] = getString(key: "bankAffiliatedBranchBankCN")
  89. arrContent[1][6] = CommonValue.formatPhone(phone: getString(key: "reservePhone"))
  90. arrContent[2][0] = getString(key: "machineTypeCN")
  91. arrContent[2][1] = getString(key: "productTypeCN")
  92. arrContent[2][2] = getString(key: "machineSnCode")
  93. let bindStatus = getIntValue(key: "bindStatus")
  94. if bindStatus == 0 {
  95. arrContent[2][3] = "未绑定"
  96. } else if bindStatus == 1 {
  97. arrContent[2][3] = "已绑定"
  98. } else if bindStatus == 2 {
  99. arrContent[2][3] = "已激活"
  100. }
  101. tableView.reloadData()
  102. } else {
  103. lblName.text = getString(key: "companyName")
  104. lblDate.text = "认证时间:\(getString(key: "createtime"))"
  105. arrContent[0][0] = getString(key: "mercNo")
  106. arrContent[0][1] = getString(key: "applicantName")
  107. // arrContent[0][2] = CommonValue.formatCardNum(str: getString(key: "applicantCard"))
  108. arrContent[0][2] = getString(key: "idCardNum")
  109. arrContent[0][3] = getString(key: "busPhone")
  110. if isHSF||isXW {
  111. arrContent[1][0] = "\(getDoubleValue(key: "rate")/10)%"
  112. }else{
  113. arrContent[1][0] = "\(getDoubleValue(key: "rate"))%"
  114. }
  115. arrContent[2][0] = getString(key: "machineTypeCN")
  116. arrContent[2][1] = getString(key: "machineSnCode")
  117. tableView.reloadData()
  118. }
  119. }
  120. override func returnError(tag: Int, type: String) {
  121. }
  122. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  123. return 55
  124. }
  125. func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
  126. let view = CommonViewUntils.getViewForXIB(xibName: "OpenDetailTableViewHeaderView") as! OpenDetailTableViewHeaderView
  127. view.initView(section: section)
  128. view.lblRemark.isHidden = true
  129. if section == 0 {
  130. view.lblName.text = "基本信息"
  131. } else if section == 1 {
  132. view.lblName.text = "结算信息"
  133. } else if section == 2 {
  134. view.lblName.text = "绑定设备信息"
  135. }
  136. return view
  137. }
  138. // func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  139. // return 12;
  140. // }
  141. // func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
  142. // let view = UIView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: 12))
  143. // view.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xf0f0f2, alpha: 1.0);
  144. // return view;
  145. // }
  146. // MARK: TABLEVLEW 实现
  147. func numberOfSections(in tableView: UITableView) -> Int {
  148. return self.arrTitle.count
  149. }
  150. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  151. return self.arrTitle[section].count
  152. }
  153. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  154. return 55
  155. }
  156. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  157. let cell = tableView.dequeueReusableCell(withIdentifier: "TiXianDetailTableViewCell", for: indexPath as IndexPath) as! TiXianDetailTableViewCell
  158. cell.lblTitle.text = arrTitle[indexPath.section][indexPath.row]
  159. cell.lblContent.text = arrContent[indexPath.section][indexPath.row]
  160. return cell
  161. }
  162. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  163. // let view = UIViewController()
  164. // view.oneGoId = self.arrData[indexPath.row]["ItemId"] as! Int
  165. // self.navigationController?.pushViewController(view, animated: true)
  166. }
  167. override func viewWillAppear(_ animated: Bool) {
  168. super.viewWillAppear(animated)
  169. }
  170. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  171. super.init(nibName: "MyShopDetailViewController", bundle: nil)
  172. }
  173. required init?(coder aDecoder: NSCoder) {
  174. fatalError("init(coder:) has not been implemented")
  175. }
  176. }