PosManangerViewController.swift 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. //
  2. // PosManangerViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/27.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class PosManangerViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. @IBOutlet weak var lblOpenAmount: UILabel!
  11. @IBOutlet weak var lblAmount: UILabel!
  12. @IBOutlet weak var tableView: UITableView!
  13. @IBOutlet weak var viewTop: UIView!
  14. @IBOutlet weak var viewMenu1: UIView!
  15. @IBOutlet weak var viewMenu2: UIView!
  16. override func viewDidLoad() {
  17. super.viewDidLoad()
  18. self.title = "机具管理"
  19. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  20. viewNav.initView(title: "机具管理") {[weak self] (index, _) in
  21. if index == 0 {
  22. self!.handleBack()
  23. }
  24. }
  25. self.view.addSubview(viewNav)
  26. viewNav.marginTop(top: 0)
  27. viewTop.setSizeWidth(width: ScreenWidth)
  28. CommonViewUntils.setViewAverage(arrView: [viewMenu1, viewMenu2])
  29. // tableView.register(UINib(nibName: "PosManangerTableViewCell", bundle:nil) , forCellReuseIdentifier: "PosManangerTableViewCell")
  30. tableView.delegate = self
  31. tableView.dataSource = self
  32. // tableView.separatorStyle = .none
  33. tableView.tableFooterView = UIView.init()
  34. tableView.showsVerticalScrollIndicator = false
  35. tableView.estimatedRowHeight = 100
  36. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  37. self!.currentPage = 1
  38. self!.loadData()
  39. })
  40. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  41. }
  42. // MARK: =============加载数据===============
  43. func loadData() {
  44. let url = RequestURL.machineTypeNumList
  45. let params = NSMutableDictionary()
  46. params.setValue(CommonValue.getUserId(), forKey: "userId")
  47. loadDataList(url: url, params: params, tableView: self.tableView, tag: 1001)
  48. }
  49. override func returnData(tag: Int) {
  50. if tag == 1001 {
  51. if dataSize != nil {
  52. let strAmount = "\(dataSize!["total"] ?? "0")台"
  53. lblAmount.attributedText = CommonViewUntils.getAttributedStringForFont(str: strAmount, rangs: [NSRange.init(location: 0, length: strAmount.length() - 1), NSRange.init(location: strAmount.length() - 1, length: 1)], fonts: [UIFont.systemFont(ofSize: 24), UIFont.systemFont(ofSize: 14)])
  54. let bindNum = getIntValue(key: "status1", dic: dataSize!)
  55. let activNum = getIntValue(key: "status2", dic: dataSize!)
  56. let strOpenAmount = "\(bindNum + activNum)台"
  57. lblOpenAmount.attributedText = CommonViewUntils.getAttributedStringForFont(str: strOpenAmount, rangs: [NSRange.init(location: 0, length: strOpenAmount.length() - 1), NSRange.init(location: strOpenAmount.length() - 1, length: 1)], fonts: [UIFont.systemFont(ofSize: 24), UIFont.systemFont(ofSize: 14)])
  58. }
  59. // var amount = 0;
  60. // var openAmount = 0;
  61. // for i in 0 ..< self.arrData.count
  62. // {
  63. // amount += getIntValue(current: i, key: "total")
  64. // openAmount += getIntValue(current: i, key: "activated")
  65. // }
  66. // let strAmount = "\(amount)台"
  67. // let strOpenAmount = "\(openAmount)台"
  68. // lblAmount.attributedText = CommonViewUntils.getAttributedStringForFont(str: strAmount, rangs: [NSRange.init(location: 0, length: strAmount.length() - 1),NSRange.init(location: strAmount.length() - 1, length: 1)], fonts: [UIFont.systemFont(ofSize: 24),UIFont.systemFont(ofSize: 14)])
  69. //
  70. // lblOpenAmount.attributedText = CommonViewUntils.getAttributedStringForFont(str: strOpenAmount, rangs: [NSRange.init(location: 0, length: strOpenAmount.length() - 1),NSRange.init(location: strOpenAmount.length() - 1, length: 1)], fonts: [UIFont.systemFont(ofSize: 24),UIFont.systemFont(ofSize: 14)])
  71. tableView.reloadData()
  72. }
  73. }
  74. override func returnError(tag: Int, type: String) {
  75. }
  76. // MARK: TABLEVLEW 实现
  77. // MARK: TABLEVLEW 实现
  78. func numberOfSections(in tableView: UITableView) -> Int {
  79. return 1
  80. }
  81. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  82. return self.arrData.count
  83. }
  84. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  85. return 60
  86. }
  87. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  88. // let cell = tableView.dequeueReusableCell(withIdentifier: "PosManangerTableViewCell", for: indexPath as IndexPath) as! PosManangerTableViewCell
  89. //
  90. // cell.lblTitle.text = getString(current: indexPath.row, key: "name")
  91. // //cell.lblRemark.text = getString(current: indexPath.row, key: "brief");
  92. // cell.img.loadImage(imgUrl: getString(current: indexPath.row, key: "icon"), defaultImage: "");
  93. // cell.lblCount.text = "\(getIntValue(current: indexPath.row, key: "total"))台"
  94. // return cell
  95. var cell = tableView.dequeueReusableCell(withIdentifier: "posManagerCell")
  96. if cell == nil {
  97. cell = UITableViewCell.init(style: .value1, reuseIdentifier: "posManagerCell")
  98. cell?.detailTextLabel?.textColor = UIColor.red
  99. cell?.detailTextLabel?.font = UIFont.systemFont(ofSize: 14)
  100. cell?.accessoryType = .disclosureIndicator
  101. }
  102. cell?.textLabel!.text = getString(current: indexPath.row, key: "name")
  103. cell?.detailTextLabel!.text = "\(getIntValue(current: indexPath.row, key: "total"))台"
  104. return cell!
  105. }
  106. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  107. if indexPath.row >= arrData.count {
  108. return
  109. }
  110. let vc = PosViewController()
  111. vc.amount = getIntValue(current: indexPath.row, key: "total")
  112. vc.bindAmount = getIntValue(current: indexPath.row, key: "bound")
  113. vc.activated = getIntValue(current: indexPath.row, key: "activated")
  114. vc.unBindAmount = getIntValue(current: indexPath.row, key: "unbound")
  115. vc.machineTypeId = getString(current: indexPath.row, key: "id")
  116. vc.titleName = getString(current: indexPath.row, key: "name")
  117. toViewController(viewController: vc)
  118. }
  119. override func viewWillAppear(_ animated: Bool) {
  120. super.viewWillAppear(animated)
  121. appDelegate.setNavigationBarHidden(isHidden: true)
  122. tableView.mj_header?.beginRefreshing()
  123. }
  124. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  125. super.init(nibName: "PosManangerViewController", bundle: nil)
  126. }
  127. required init?(coder aDecoder: NSCoder) {
  128. fatalError("init(coder:) has not been implemented")
  129. }
  130. }