MyDelegateViewController.swift 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. //
  2. // SelectBankViewController.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 MyDelegateViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate {
  10. @IBOutlet weak var viewRemark: UIView!
  11. @IBOutlet weak var tableView: UITableView!
  12. @IBOutlet weak var imgBackgroud: UIImageView!
  13. @IBOutlet weak var txtCode: UITextField!
  14. @IBOutlet weak var viewMenu: UIView!
  15. @IBOutlet weak var lblRemark: UILabel!
  16. var mid = ""
  17. var provinceId = ""
  18. var cityId = ""
  19. var shopEntity: ShopOpenEntity!
  20. var bankName = ""
  21. ///0:代理 1:商户
  22. var type = 0
  23. var strTitle = "代理"
  24. override func viewDidLoad() {
  25. super.viewDidLoad()
  26. if type == 1 {
  27. strTitle = "商户"
  28. }
  29. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  30. viewNav.initView(title: "我的\(strTitle)") {[weak self] (index, _) in
  31. if index == 0 {
  32. self!.handleBack()
  33. }
  34. }
  35. self.view.addSubview(viewNav)
  36. viewNav.marginTop(top: 0)
  37. self.view.addSubview(viewNav)
  38. viewNav.marginTop(top: 0)
  39. viewMenu.marginTop(top: viewNav.bottom())
  40. txtCode.setCornerRadius(size: 4)
  41. txtCode.setContentMarginLeft(leftWidth: 15)
  42. txtCode.setContentMarginRight(rightWidth: 30)
  43. imgBackgroud.setSizeHeight(height: viewMenu.bottom())
  44. viewRemark.marginTop(top: 0, view: imgBackgroud)
  45. tableView.marginTop(top: 1, view: viewRemark)
  46. tableView.setSizeHeight(height: ScreenHeight - imgBackgroud.height() - 49)
  47. tableView.register(UINib(nibName: "MyDelegateTableViewCell", bundle: nil), forCellReuseIdentifier: "MyDelegateTableViewCell")
  48. tableView.delegate = self
  49. tableView.dataSource = self
  50. tableView.separatorStyle = .none
  51. tableView.showsVerticalScrollIndicator = false
  52. tableView.estimatedRowHeight = 100
  53. tableView.keyboardDismissMode = .onDrag
  54. txtCode.delegate = self
  55. txtCode.returnKeyType = .search
  56. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  57. self!.currentPage = 1
  58. self!.loadData()
  59. })
  60. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  61. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  62. self!.currentPage += 1
  63. self!.loadData()
  64. })
  65. // lblRemark.setColorString(str: "直属\(strTitle)(3人)", range: NSRange.init(location: 5, length: 2), defaultColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x323232, alpha: 1.0), currentColor: UIColor.red)
  66. //CommonViewUntils.getAttributedString(str: "直属\(strTitle)(3人)", left: [5,strTitle.length() + 2,strTitle.length() + 4], color: [UIColor])
  67. // lblRemark.text = "直属\(strTitle)(3人)"
  68. self.currentPage = 1
  69. loadData()
  70. }
  71. @IBAction func btnQuery(_ sender: Any) {
  72. self.currentPage = 1
  73. loadData()
  74. }
  75. func textFieldShouldReturn(_ textField: UITextField) -> Bool {
  76. self.currentPage = 1
  77. loadData()
  78. return true
  79. }
  80. // MARK: =============加载数据===============
  81. func loadData() //str:String
  82. {
  83. let url = RequestURL.myAgentList
  84. let params = NSMutableDictionary()
  85. params.setValue(CommonValue.getUserId(), forKey: "userId")
  86. params.setValue(txtCode.text!, forKey: "likeStr")
  87. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  88. }
  89. func submitData() {
  90. if selectedIndex == -1 {
  91. SVProgressHUD.showError(withStatus: "请选择分拨代理")
  92. return
  93. }
  94. let url = RequestURL.machineAllocation
  95. let params = NSMutableDictionary()
  96. params.setValue(getString(current: selectedIndex, key: "id"), forKey: "userId")
  97. params.setValue(mid, forKey: "machineId")
  98. submitData(url: url, params: params, tag: 1002)
  99. }
  100. override func returnData(tag: Int) {
  101. if tag == 1001 {
  102. lblRemark.setColorString(str: "直属\(strTitle)(\(dicDataList.getInt(key: "totalNum"))人)", range: NSRange.init(location: 5, length: 2), defaultColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x323232, alpha: 1.0), currentColor: UIColor.red)
  103. tableView.reloadData()
  104. } else if tag == 1002 {
  105. SVProgressHUD.showSuccess(withStatus: "分拨成功!")
  106. handleBack()
  107. }
  108. }
  109. override func returnError(tag: Int, type: String) {
  110. }
  111. // MARK: TABLEVLEW 实现
  112. func numberOfSections(in tableView: UITableView) -> Int {
  113. return 1
  114. }
  115. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  116. return self.arrData.count
  117. }
  118. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  119. return 82
  120. }
  121. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  122. let cell = tableView.dequeueReusableCell(withIdentifier: "MyDelegateTableViewCell", for: indexPath as IndexPath) as! MyDelegateTableViewCell
  123. if getString(current: indexPath.row, key: "realName") == "" {
  124. cell.lblName.text = "未实名认证"
  125. } else {
  126. cell.lblName.text = "\(getString(current: indexPath.row, key: "realName")) "
  127. }
  128. let phone = "\(getString(current: indexPath.row, key: "phone"))(推荐码:\(getString(current: indexPath.row, key: "recCode")))"
  129. if phone.length() > 7 {
  130. cell.lblPhone.text = "\(phone.substringTo(index: 3))****\(phone.substringFrom(index: 7))"
  131. } else {
  132. cell.lblPhone.text = "\(phone.substringTo(index: 3))****"
  133. }
  134. cell.imgIcon.loadImage(imgUrl: getString(current: indexPath.row, key: "headPortrait"), defaultImage: "ion_index_01")
  135. if type == 1 {
  136. cell.btnPhone.isHidden = true
  137. cell.lblPhone.isHidden = true
  138. cell.lblName.marginTop(top: 0)
  139. cell.lblName.setSizeHeight(height: 82)
  140. } else {
  141. cell.imgIcon.setCornerRadius()
  142. }
  143. cell.btnPhone.tag = indexPath.row
  144. cell.btnPhone.addTarget(self, action: #selector(btnCallClick), for: .touchUpInside)
  145. return cell
  146. }
  147. var selectedIndex = -1
  148. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  149. ///0:代理 1:商户
  150. if indexPath.row >= arrData.count {
  151. return
  152. }
  153. if type == 0 {
  154. let vc = MyDelegateDetailViewController()
  155. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  156. vc.id = getString(current: indexPath.row, key: "id")
  157. toViewController(viewController: vc)
  158. } else {
  159. let vc = MyShopDetailViewController()
  160. vc.id = getString(current: indexPath.row, key: "id")
  161. toViewController(viewController: vc)
  162. }
  163. }
  164. @objc func btnCallClick(btn: UIButton) {
  165. if CommonUntils.getIsSimulator() {
  166. SVProgressHUD.showError(withStatus: "模拟器环境下不能拨打电话")
  167. } else {
  168. CommonUntils.callPhone(phone: getString(current: btn.tag, key: "phone"))
  169. }
  170. }
  171. override func viewWillAppear(_ animated: Bool) {
  172. super.viewWillAppear(animated)
  173. appDelegate.setNavigationBarHidden(isHidden: true)
  174. loadData()
  175. }
  176. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  177. super.init(nibName: "MyDelegateViewController", bundle: nil)
  178. }
  179. required init?(coder aDecoder: NSCoder) {
  180. fatalError("init(coder:) has not been implemented")
  181. }
  182. }