MyShopDetailTypeViewController.swift 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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 MyShopDetailTypeViewController: 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. var arrTitle = [["商户编号", "商户名", "所在地区", "营业地址", "营业范围", "行业类别", "Mcc类型", "签约费率"], ["姓名", "身份证号码", "结算卡号", "结算银行名称", "开户地区", "结算银行支行名称", "银行预留手机号", "本人信用卡卡号", "信用卡预留手机号"], ["品牌名称", "产品类型", "设备SN号", "激活状态"]]
  16. var arrContent = [["", "", "", "", "", "", "", ""], ["", "", "", "", "", "", "", "", ""], ["", "", "", ""]]
  17. override func viewDidLoad() {
  18. super.viewDidLoad()
  19. self.title = "商户详情"
  20. initNavLeftBackButton()
  21. tableView.register(UINib(nibName: "TiXianDetailTableViewCell", bundle: nil), forCellReuseIdentifier: "TiXianDetailTableViewCell")
  22. tableView.delegate = self
  23. tableView.dataSource = self
  24. tableView.separatorStyle = .none
  25. tableView.showsVerticalScrollIndicator = false
  26. tableView.estimatedRowHeight = 100
  27. loadData()
  28. }
  29. // MARK: =============加载数据===============
  30. func loadData() {
  31. let url = RequestURL.myMerchantDetailQyb
  32. let params = NSMutableDictionary()
  33. params.setValue(id, forKey: "id")
  34. loadDataInfo(url: url, params: params, tag: 1001)
  35. }
  36. override func returnData(tag: Int) {
  37. if tag == 1001 {
  38. lblName.text = getString(key: "mercName")
  39. lblDate.text = "开通时间:\(getString(key: "createtime"))"
  40. //"商户编号","商户名","所在地区","营业地址","营业范围","行业类别","Mcc类型","签约费率"
  41. arrContent[0][0] = getString(key: "mercNum")
  42. arrContent[0][1] = getString(key: "mercName")
  43. arrContent[0][2] = "\(getString(key: "provCodeCN")) \(getString(key: "cityCodeCN")) \(getString(key: "areaCodeCN"))"
  44. arrContent[0][3] = getString(key: "addrDetail")
  45. arrContent[0][4] = getString(key: "bizScope")
  46. arrContent[0][5] = "\(getString(key: "customMccTypeCN"))"
  47. arrContent[0][6] = getString(key: "mccName")
  48. arrContent[0][7] = "\(getDoubleValue(key: "qybRate"))%"
  49. //"结算卡姓名","法人证件号","结算卡号","银行预留手机号","结算银行名称","结算银行支行名称","开户地区","TS认证信用卡","信用卡预留手机号"
  50. //"结算卡姓名","法人证件号","结算卡号","结算银行名称","开户地区","结算银行支行名称","银行预留手机号","TS认证信用卡","信用卡预留手机号"
  51. arrContent[1][0] = getString(key: "settleName")
  52. arrContent[1][1] = CommonValue.formatCardNum(str: getString(key: "bankcardID"))
  53. arrContent[1][2] = CommonValue.formatCardNum(str: getString(key: "accNum"))
  54. arrContent[1][3] = getString(key: "bankName")
  55. arrContent[1][4] = "\(getString(key: "bankCardProvCodeCN")) \(getString(key: "bankCardCityCodeCN"))"
  56. arrContent[1][5] = getString(key: "bankNameBranch")
  57. arrContent[1][6] = CommonValue.formatPhone(phone: getString(key: "phoneShow"))
  58. arrContent[1][7] = CommonValue.formatCardNum(str: getString(key: "verifyDebitCardNum"))
  59. arrContent[1][8] = CommonValue.formatPhone(phone: getString(key: "verifyDebitPhoneYL"))
  60. arrContent[2][0] = getString(key: "machineTypeCN")
  61. arrContent[2][1] = getString(key: "productTypeCN")
  62. arrContent[2][2] = getString(key: "machineSnCode")
  63. let bindStatus = getIntValue(key: "bindStatus")
  64. if bindStatus == 0 {
  65. arrContent[2][3] = "未绑定"
  66. } else if bindStatus == 1 {
  67. arrContent[2][3] = "已绑定"
  68. } else if bindStatus == 2 {
  69. arrContent[2][3] = "已激活"
  70. }
  71. tableView.reloadData()
  72. }
  73. }
  74. override func returnError(tag: Int, type: String) {
  75. }
  76. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  77. return 55
  78. }
  79. func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
  80. let view = CommonViewUntils.getViewForXIB(xibName: "OpenDetailTableViewHeaderView") as! OpenDetailTableViewHeaderView
  81. view.initView(section: section)
  82. view.lblRemark.isHidden = true
  83. if section == 0 {
  84. view.lblName.text = "基本信息"
  85. } else if section == 1 {
  86. view.lblName.text = "结算信息"
  87. } else if section == 2 {
  88. view.lblName.text = "绑定设备信息"
  89. }
  90. return view
  91. }
  92. // func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  93. // return 12;
  94. // }
  95. // func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
  96. // let view = UIView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: 12))
  97. // view.backgroundColor = CommonUntils.getUIColorFromRGB(rgbValue: 0xf0f0f2, alpha: 1.0);
  98. // return view;
  99. // }
  100. // MARK: TABLEVLEW 实现
  101. func numberOfSections(in tableView: UITableView) -> Int {
  102. return self.arrTitle.count
  103. }
  104. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  105. return self.arrTitle[section].count
  106. }
  107. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  108. return 55
  109. }
  110. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  111. let cell = tableView.dequeueReusableCell(withIdentifier: "TiXianDetailTableViewCell", for: indexPath as IndexPath) as! TiXianDetailTableViewCell
  112. cell.lblTitle.text = arrTitle[indexPath.section][indexPath.row]
  113. cell.lblContent.text = arrContent[indexPath.section][indexPath.row]
  114. return cell
  115. }
  116. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  117. // let view = UIViewController()
  118. // view.oneGoId = self.arrData[indexPath.row]["ItemId"] as! Int
  119. // self.navigationController?.pushViewController(view, animated: true)
  120. }
  121. override func viewWillAppear(_ animated: Bool) {
  122. super.viewWillAppear(animated)
  123. }
  124. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  125. super.init(nibName: "MyShopDetailTypeViewController", bundle: nil)
  126. }
  127. required init?(coder aDecoder: NSCoder) {
  128. fatalError("init(coder:) has not been implemented")
  129. }
  130. }