SplitDeviceViewController.swift 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 SplitDeviceViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate {
  10. @IBOutlet weak var tableView: UITableView!
  11. @IBOutlet weak var imgBackgroud: UIImageView!
  12. @IBOutlet weak var txtCode: UITextField!
  13. @IBOutlet weak var viewMenu: UIView!
  14. var mid = ""
  15. var provinceId = ""
  16. var cityId = ""
  17. var shopEntity: ShopOpenEntity!
  18. var bankName = ""
  19. override func viewDidLoad() {
  20. super.viewDidLoad()
  21. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  22. viewNav.initView(title: "选择分拨代理") {[weak self] (index, _) in
  23. if index == 0 {
  24. self!.handleBack()
  25. }
  26. }
  27. self.view.addSubview(viewNav)
  28. viewNav.marginTop(top: 0)
  29. self.view.addSubview(viewNav)
  30. viewNav.marginTop(top: 0)
  31. viewMenu.marginTop(top: viewNav.bottom())
  32. txtCode.setCornerRadius(size: 4)
  33. txtCode.setContentMarginLeft(leftWidth: 15)
  34. txtCode.setContentMarginRight(rightWidth: 30)
  35. imgBackgroud.setSizeHeight(height: viewMenu.bottom())
  36. tableView.marginTop(top: 0, view: imgBackgroud)
  37. tableView.setSizeHeight(height: ScreenHeight - imgBackgroud.height() - 86)
  38. tableView.register(UINib(nibName: "SplitDeviceTableViewCell", bundle: nil), forCellReuseIdentifier: "SplitDeviceTableViewCell")
  39. tableView.delegate = self
  40. tableView.dataSource = self
  41. tableView.separatorStyle = .none
  42. tableView.showsVerticalScrollIndicator = false
  43. tableView.estimatedRowHeight = 100
  44. tableView.keyboardDismissMode = .onDrag
  45. txtCode.delegate = self
  46. txtCode.returnKeyType = .search
  47. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  48. self!.currentPage = 1
  49. self!.loadData()
  50. })
  51. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  52. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  53. self!.currentPage += 1
  54. self!.loadData()
  55. })
  56. }
  57. @IBAction func btnSubmitClick(_ sender: Any) {
  58. CommonUntils.AlertView(controller: self, title: "提示", message: "确定将此设备分拨到名下", buttons: ["确定"], style: .alert) {[weak self] (_, _) in
  59. self!.submitData()
  60. }
  61. }
  62. @IBAction func btnQuery(_ sender: Any) {
  63. self.currentPage = 1
  64. loadData()
  65. }
  66. func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
  67. // if(string != "")
  68. // {
  69. // loadData(str:"\(textField.text!)\(string)");
  70. // }
  71. // else
  72. // {
  73. // if(textField.text!.length() > 1)
  74. // {
  75. // loadData(str:"\(textField.text!.substringTo(index: textField.text!.length() - 1))");
  76. // }
  77. // else
  78. // {
  79. // arrData.removeAllObjects();
  80. // tableView.reloadData();
  81. // }
  82. // }
  83. return true
  84. }
  85. func textFieldShouldReturn(_ textField: UITextField) -> Bool {
  86. self.currentPage = 1
  87. loadData()
  88. return true
  89. }
  90. // MARK: =============加载数据===============
  91. func loadData() //str:String
  92. {
  93. let url = RequestURL.myAgentList
  94. let params = NSMutableDictionary()
  95. params.setValue(CommonValue.getUserId(), forKey: "userId")
  96. params.setValue(txtCode.text!, forKey: "likeStr")
  97. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  98. }
  99. func submitData() {
  100. if selectedIndex == -1 {
  101. SVProgressHUD.showError(withStatus: "请选择分拨代理")
  102. return
  103. }
  104. let url = RequestURL.machineAllocation
  105. let params = NSMutableDictionary()
  106. params.setValue(getString(current: selectedIndex, key: "id"), forKey: "userId")
  107. params.setValue(mid, forKey: "machineId")
  108. submitData(url: url, params: params, tag: 1002)
  109. }
  110. override func returnData(tag: Int) {
  111. if tag == 1001 {
  112. tableView.reloadData()
  113. } else if tag == 1002 {
  114. SVProgressHUD.showSuccess(withStatus: "分拨成功!")
  115. if !CommonUntils.reBackView(controller: self, aclass: PosManangerViewController.classForCoder()) {
  116. handleBack()
  117. }
  118. }
  119. }
  120. override func returnError(tag: Int, type: String) {
  121. }
  122. // MARK: TABLEVLEW 实现
  123. func numberOfSections(in tableView: UITableView) -> Int {
  124. return 1
  125. }
  126. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  127. return self.arrData.count
  128. }
  129. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  130. return 60
  131. }
  132. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  133. let cell = tableView.dequeueReusableCell(withIdentifier: "SplitDeviceTableViewCell", for: indexPath as IndexPath) as! SplitDeviceTableViewCell
  134. cell.lblTitle.text = getString(current: indexPath.row, key: "realName") == "" ? getString(current: indexPath.row, key: "nickName") : getString(current: indexPath.row, key: "realName")
  135. let isSelected = getIntValue(current: indexPath.row, key: "isSelected")
  136. if isSelected == 1 {
  137. cell.btnIsSelected.isSelected = true
  138. } else {
  139. cell.btnIsSelected.isSelected = false
  140. }
  141. cell.lblRemark.text = "手机号:\(getString(current: indexPath.row, key: "phone")) 推荐码:\(getString(current: indexPath.row, key: "recCode"))"
  142. return cell
  143. }
  144. var selectedIndex = -1
  145. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  146. selectedIndex = indexPath.row
  147. for i in 0 ..< self.arrData.count {
  148. if i == indexPath.row {
  149. setArrDataIntValue(current: i, key: "isSelected", value: 1)
  150. } else {
  151. setArrDataIntValue(current: i, key: "isSelected", value: 0)
  152. }
  153. }
  154. tableView.reloadData()
  155. }
  156. override func viewWillAppear(_ animated: Bool) {
  157. super.viewWillAppear(animated)
  158. appDelegate.setNavigationBarHidden(isHidden: true)
  159. loadData()
  160. }
  161. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  162. super.init(nibName: "SplitDeviceViewController", bundle: nil)
  163. }
  164. required init?(coder aDecoder: NSCoder) {
  165. fatalError("init(coder:) has not been implemented")
  166. }
  167. }