PosListViewController.swift 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. //
  2. // PosListViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/3.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class PosListViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource, UITextFieldDelegate {
  10. @IBOutlet weak var lblTitle: UILabel!
  11. @IBOutlet weak var tableView: UITableView!
  12. var machineTypeId = ""
  13. var amount = 0
  14. var bindAmount = 0
  15. var activated = 0
  16. var unBindAmount = 0
  17. var strTitle = ""
  18. @IBOutlet weak var imgBackgroud: UIImageView!
  19. @IBOutlet weak var txtCode: UITextField!
  20. @IBOutlet weak var viewMenu: UIView!
  21. @IBOutlet weak var viewRemark: UIView!
  22. override func viewDidLoad() {
  23. super.viewDidLoad()
  24. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  25. viewNav.initView(title: "\(strTitle)") {[weak self] (index, _) in
  26. if index == 0 {
  27. self!.handleBack()
  28. }
  29. }
  30. self.view.addSubview(viewNav)
  31. viewNav.marginTop(top: 0)
  32. viewMenu.marginTop(top: viewNav.bottom())
  33. txtCode.setCornerRadius(size: 4)
  34. txtCode.setContentMarginLeft(leftWidth: 15)
  35. txtCode.setContentMarginRight(rightWidth: 30)
  36. txtCode.delegate = self
  37. imgBackgroud.setSizeHeight(height: viewMenu.bottom())
  38. viewRemark.marginTop(top: 0, view: imgBackgroud)
  39. tableView.marginTop(top: 1, view: viewRemark)
  40. tableView.setSizeHeight(height: ScreenHeight - imgBackgroud.height() - 44)
  41. tableView.register(UINib(nibName: "PosListTableViewCell", bundle: nil), forCellReuseIdentifier: "PosListTableViewCell")
  42. tableView.delegate = self
  43. tableView.dataSource = self
  44. tableView.separatorStyle = .none
  45. tableView.showsVerticalScrollIndicator = false
  46. tableView.estimatedRowHeight = 100
  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. tableView.mj_header?.beginRefreshing()
  57. }
  58. override func KeyboardHidden(gestureRecognizer: UIGestureRecognizer) {
  59. txtCode.resignFirstResponder()
  60. }
  61. func textFieldShouldReturn(_ textField: UITextField) -> Bool {
  62. txtCode.resignFirstResponder()
  63. self.currentPage = 1
  64. loadData()
  65. return true
  66. }
  67. // MARK: =============加载数据===============
  68. func loadData() {
  69. let url = RequestURL.machineList
  70. let params = NSMutableDictionary()
  71. params.setValue(CommonValue.getUserId(), forKey: "userId")
  72. params.setValue(machineTypeId, forKey: "machineTypeId")
  73. params.setValue(txtCode.text!, forKey: "snCode")
  74. loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
  75. //tableView.reloadData();
  76. }
  77. override func returnData(tag: Int) {
  78. if tag == 1001 {
  79. tableView.reloadData()
  80. }
  81. }
  82. override func returnError(tag: Int, type: String) {
  83. }
  84. //btnAddTarget(view: self.view, selector: #selector(self.btnMenuClick))
  85. @IBAction func btnMenuClick(_ sender: AnyObject) {
  86. switch (sender as! UIButton).tag {
  87. case 1001: // 查询
  88. txtCode.resignFirstResponder()
  89. self.currentPage = 1
  90. self.loadData()
  91. break
  92. case 1002: //
  93. break
  94. case 1003: //
  95. break
  96. case 1004: //
  97. break
  98. case 1005: //
  99. break
  100. case 1006: //
  101. break
  102. default:
  103. break
  104. }
  105. }
  106. // MARK: TABLEVLEW 实现
  107. func numberOfSections(in tableView: UITableView) -> Int {
  108. return 1
  109. }
  110. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  111. return self.arrData.count
  112. }
  113. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  114. let state = getIntValue(current: indexPath.row, key: "status")
  115. if state == 0 {
  116. return 220; //177
  117. } else {
  118. return 177; //177
  119. }
  120. }
  121. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  122. let cell = tableView.dequeueReusableCell(withIdentifier: "PosListTableViewCell", for: indexPath as IndexPath) as! PosListTableViewCell
  123. cell.btnBottom.isHidden = true
  124. let state = getIntValue(current: indexPath.row, key: "status")
  125. if state == 2 {
  126. cell.lblState.text = "已激活"
  127. cell.lblState.textColor = UIColor.red
  128. } else if state == 1 {
  129. cell.lblState.text = "已绑定"
  130. cell.lblState.textColor = UIColor.red
  131. } else if state == 0 {
  132. cell.lblState.text = "未绑定"
  133. cell.btnBottom.isHidden = false
  134. cell.lblState.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x0cab1f, alpha: 1.0)
  135. } else {
  136. cell.lblState.text = "已激活"
  137. cell.lblState.textColor = UIColor.red
  138. }
  139. cell.lblNo.text = "编号:\(getString(current: indexPath.row, key: "sn_code"))"
  140. cell.lblName.text = "\(getString(current: indexPath.row, key: "superior_user_name"))"
  141. cell.lblDate.text = "\(getString(current: indexPath.row, key: "allocation_time"))"
  142. cell.lblShopName.text = "\(getString(current: indexPath.row, key: "bind_merchant_name"))"
  143. cell.lblBindDate.text = "\(getString(current: indexPath.row, key: "bind_time"))"
  144. cell.btnBottom.tag = indexPath.row
  145. cell.btnBottom.addTarget(self, action: #selector(btnBottomClick(btn:)), for: .touchUpInside)
  146. return cell
  147. }
  148. @objc func btnBottomClick(btn: UIButton) {
  149. let vc = SplitDeviceViewController()
  150. vc.mid = getString(current: btn.tag, key: "id")
  151. toViewController(viewController: vc)
  152. }
  153. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  154. // let view = UIViewController()
  155. // view.oneGoId = self.arrData[indexPath.row]["ItemId"] as! Int
  156. // self.navigationController?.pushViewController(view, animated: true)
  157. }
  158. override func viewWillAppear(_ animated: Bool) {
  159. super.viewWillAppear(animated)
  160. appDelegate.setNavigationBarHidden(isHidden: true)
  161. let strAmount = "\(amount)"
  162. let strBindAmount = "\(bindAmount)"
  163. let strUnBindAmount = "\(unBindAmount)"
  164. let strActivated = "\(activated)"
  165. let str = "共\(strAmount)台 未绑定\(strUnBindAmount)台 已绑定\(strBindAmount)台 激活\(strActivated)台"
  166. lblTitle.attributedText = CommonViewUntils.getAttributedStringForFontAndColor(str: str, rangs: [NSRange.init(location: 0, length: 1), NSRange.init(location: 1, length: strAmount.length()), NSRange.init(location: strAmount.length() + 1, length: 5), NSRange.init(location: strAmount.length() + 6, length: strUnBindAmount.length()), NSRange.init(location: strAmount.length() + 6 + strUnBindAmount.length(), length: 4), NSRange.init(location: strAmount.length() + 6 + strUnBindAmount.length() + 5, length: strBindAmount.length()), NSRange.init(location: strAmount.length() + 6 + strUnBindAmount.length() + 5 + strBindAmount.length(), length: 4), NSRange.init(location: strAmount.length() + 6 + strUnBindAmount.length() + 5 + strBindAmount.length() + 4, length: strActivated.length()), NSRange.init(location: strAmount.length() + 6 + strUnBindAmount.length() + 5 + strBindAmount.length() + 4 + strActivated.length(), length: 1)], fonts: [UIFont.systemFont(ofSize: 13), UIFont.systemFont(ofSize: 13), UIFont.systemFont(ofSize: 13), UIFont.systemFont(ofSize: 13), UIFont.systemFont(ofSize: 13), UIFont.systemFont(ofSize: 13), UIFont.systemFont(ofSize: 13), UIFont.systemFont(ofSize: 13), UIFont.systemFont(ofSize: 13)], colors: [CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), UIColor.red, CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), UIColor.red, CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), UIColor.red, CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), UIColor.red, CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0)])
  167. }
  168. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  169. super.init(nibName: "PosListViewController", bundle: nil)
  170. }
  171. required init?(coder aDecoder: NSCoder) {
  172. fatalError("init(coder:) has not been implemented")
  173. }
  174. }