MyShopListViewController.swift 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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 MyShopListViewController: 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. @IBOutlet weak var viewRemark: UIView!
  15. @IBOutlet weak var lblRemark: UILabel!
  16. var queryEntity: ShopQueryModel!
  17. let contentV = CommonViewUntils.getViewForXIB(xibName: "MyShopMenuContent") as! MyShopMenuContent
  18. var menuView: XF_RightMenu = {
  19. let menuView = XF_RightMenu.init(frame: UIScreen.main.bounds)
  20. return menuView
  21. }()
  22. var sortType: String = "desc"
  23. var mid = ""
  24. var provinceId = ""
  25. var cityId = ""
  26. var shopEntity: ShopOpenEntity!
  27. var bankName = ""
  28. var machineType = "2"
  29. var strTitle = "商户"
  30. override func viewDidLoad() {
  31. super.viewDidLoad()
  32. queryEntity = ShopQueryModel()
  33. let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
  34. viewNav.initView(title: strTitle) {[weak self] (index, _) in
  35. if index == 0 {
  36. self!.handleBack()
  37. }
  38. }
  39. self.view.addSubview(viewNav)
  40. viewNav.marginTop(top: 0)
  41. self.view.addSubview(viewNav)
  42. viewNav.marginTop(top: 0)
  43. viewMenu.marginTop(top: viewNav.bottom())
  44. txtCode.setCornerRadius(size: 4)
  45. txtCode.setContentMarginLeft(leftWidth: 15)
  46. txtCode.setContentMarginRight(rightWidth: 30)
  47. imgBackgroud.setSizeHeight(height: viewMenu.bottom())
  48. viewRemark.marginTop(top: 0, view: imgBackgroud)
  49. tableView.marginTop(top: 1, view: viewRemark)
  50. tableView.setSizeHeight(height: ScreenHeight - imgBackgroud.height() - 49)
  51. tableView.register(UINib(nibName: "MyShopListTableViewCell", bundle: nil), forCellReuseIdentifier: "MyShopListTableViewCell")
  52. tableView.delegate = self
  53. tableView.dataSource = self
  54. tableView.separatorStyle = .none
  55. tableView.showsVerticalScrollIndicator = false
  56. tableView.estimatedRowHeight = 100
  57. tableView.keyboardDismissMode = .onDrag
  58. txtCode.delegate = self
  59. txtCode.returnKeyType = .search
  60. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  61. self!.currentPage = 1
  62. self!.loadData()
  63. })
  64. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  65. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  66. self!.currentPage += 1
  67. self!.loadData()
  68. })
  69. self.view.addSubview(menuView)
  70. loadData()
  71. menuView.contentView = contentV
  72. contentV.callBackForSure(backFunc: {[weak self] (queryEntityTemp) in
  73. self!.queryEntity.startTime = queryEntityTemp.startTime
  74. self!.queryEntity.endTime = queryEntityTemp.endTime
  75. self!.queryEntity.busType = queryEntityTemp.busType
  76. self!.queryEntity.miniRate = queryEntityTemp.miniRate
  77. self!.queryEntity.maxRate = queryEntityTemp.maxRate
  78. self!.menuView.hiddenView()
  79. self!.loadData()
  80. })
  81. }
  82. @IBAction func btnMenuClick(_ sender: UIButton) {
  83. switch (sender as UIButton).tag {
  84. case 1001:
  85. self.sortType = (self.sortType == "desc") ? "asc" : "desc"
  86. loadData()
  87. break
  88. case 1002:
  89. self.menuView.showView()
  90. break
  91. default:
  92. break
  93. }
  94. }
  95. @IBAction func btnQuery(_ sender: Any) {
  96. self.currentPage = 1
  97. loadData()
  98. }
  99. func textFieldShouldReturn(_ textField: UITextField) -> Bool {
  100. self.currentPage = 1
  101. loadData()
  102. return true
  103. }
  104. // MARK: =============加载数据===============
  105. func loadData() {
  106. let url = RequestURL.myMerchantList
  107. let params = NSMutableDictionary()
  108. params.setValue(CommonValue.getUserId(), forKey: "userId")
  109. params.setValue("1", forKey: "status")
  110. params.setValue(txtCode.text!, forKey: "likeStr")
  111. params.setValue(self.machineType, forKey: "machineTypeId")
  112. params.setValue(self.sortType, forKey: "sortType")
  113. params.setValue(self.queryEntity.startTime, forKey: "certificationStartTime")
  114. params.setValue(self.queryEntity.endTime, forKey: "certificationEndTime")
  115. params.setValue(self.queryEntity.busType, forKey: "busType")
  116. params.setValue(self.queryEntity.miniRate, forKey: "miniRate")
  117. params.setValue(self.queryEntity.maxRate, forKey: "maxRate")
  118. loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
  119. }
  120. func submitData() {
  121. if selectedIndex == -1 {
  122. SVProgressHUD.showError(withStatus: "请选择分拨代理")
  123. return
  124. }
  125. let url = RequestURL.machineAllocation
  126. let params = NSMutableDictionary()
  127. params.setValue(getString(current: selectedIndex, key: "id"), forKey: "userId")
  128. params.setValue(mid, forKey: "machineId")
  129. submitData(url: url, params: params, tag: 1002)
  130. }
  131. override func returnData(tag: Int) {
  132. if tag == 1001 {
  133. tableView.reloadData()
  134. } else if tag == 1002 {
  135. SVProgressHUD.showSuccess(withStatus: "分拨成功!")
  136. handleBack()
  137. }
  138. }
  139. override func returnError(tag: Int, type: String) {
  140. }
  141. // MARK: TABLEVLEW 实现
  142. func numberOfSections(in tableView: UITableView) -> Int {
  143. return 1
  144. }
  145. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  146. return self.arrData.count
  147. }
  148. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  149. return 100
  150. }
  151. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  152. let cell = tableView.dequeueReusableCell(withIdentifier: "MyShopListTableViewCell", for: indexPath as IndexPath) as! MyShopListTableViewCell
  153. cell.lblName.text = "\(getString(current: indexPath.row, key: "companyName"))"
  154. cell.lblPhone.text = "\(getString(current: indexPath.row, key: "createtime"))"
  155. cell.lblNumber.text = "SN:\(getString(current: indexPath.row, key: "machineSnCode"))"
  156. cell.lblMoney.text = "当月总额:\(getStringForInt(current: indexPath.row, key: "monthTranTotal"))元"
  157. cell.lblCount.text = "交易笔数:\(getStringForInt(current: indexPath.row, key: "monthTranSize"))笔"
  158. return cell
  159. }
  160. var selectedIndex = -1
  161. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  162. if indexPath.row >= arrData.count {
  163. return
  164. }
  165. let machineTypeId = getString(current: indexPath.row, key: "machineTypeId")
  166. if machineTypeId == "1" {
  167. let vc = MyShopDetailTypeViewController()
  168. vc.id = getString(current: indexPath.row, key: "id")
  169. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  170. toViewController(viewController: vc)
  171. }else if machineTypeId == "777" || machineTypeId == "888" || machineTypeId == "999" || machineTypeId == "9999" || machineType == "1df30df31e5a43c1b468b73a6abf586a"{
  172. let vc = MyShopDetailViewController()
  173. vc.isKssSer = false
  174. vc.isHSF = machineType == "1df30df31e5a43c1b468b73a6abf586a" ? false : true
  175. vc.isXW = machineType == "1df30df31e5a43c1b468b73a6abf586a" ? true : false
  176. vc.id = getString(current: indexPath.row, key: "id")
  177. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  178. toViewController(viewController: vc)
  179. }
  180. else {
  181. let vc = MyShopDetailViewController()
  182. let index: NSInteger = brandIdList.lastIndex(of: machineTypeId) ?? 0
  183. if index == 2 || index == 3 {
  184. vc.isKssSer = true
  185. }
  186. vc.id = getString(current: indexPath.row, key: "id")
  187. vc.dicData.setDic(dic: self.arrData[indexPath.row] as! NSDictionary)
  188. toViewController(viewController: vc)
  189. }
  190. }
  191. @objc func btnCallClick(btn: UIButton) {
  192. if CommonUntils.getIsSimulator() {
  193. SVProgressHUD.showError(withStatus: "模拟器环境下不能拨打电话")
  194. } else {
  195. CommonUntils.callPhone(phone: getString(current: btn.tag, key: "phone"))
  196. }
  197. }
  198. override func viewWillAppear(_ animated: Bool) {
  199. super.viewWillAppear(animated)
  200. appDelegate.setNavigationBarHidden(isHidden: true)
  201. }
  202. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  203. super.init(nibName: "MyShopListViewController", bundle: nil)
  204. }
  205. required init?(coder aDecoder: NSCoder) {
  206. fatalError("init(coder:) has not been implemented")
  207. }
  208. }