123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- //
- // SelectBankViewController.swift
- // xingchuangke
- //
- // Created by Virgil on 2019/3/30.
- // Copyright © 2019 Virgil. All rights reserved.
- //
- import UIKit
- class BJSelectBankViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate, UITextFieldDelegate {
- @IBOutlet weak var tableView: UITableView!
- @IBOutlet weak var imgBackgroud: UIImageView!
- @IBOutlet weak var txtCode: UITextField!
- @IBOutlet weak var viewMenu: UIView!
- var provinceId = ""
- var cityId = ""
- var shopEntity: ShopOpenEntity!
- var bankName = ""
- override func viewDidLoad() {
- super.viewDidLoad()
- let viewNav = (CommonViewUntils.getViewForXIB(xibName: "NavView") as! NavView)
- viewNav.initView(title: "选择结算银行") {[weak self] (index, _) in
- if index == 0 {
- self!.handleBack()
- }
- }
- self.view.addSubview(viewNav)
- viewNav.marginTop(top: 0)
- self.view.addSubview(viewNav)
- viewNav.marginTop(top: 0)
- viewMenu.marginTop(top: viewNav.bottom())
- txtCode.setCornerRadius(size: 4)
- txtCode.setContentMarginLeft(leftWidth: 15)
- txtCode.setContentMarginRight(rightWidth: 30)
- imgBackgroud.setSizeHeight(height: viewMenu.bottom())
- tableView.marginTop(top: 0, view: imgBackgroud)
- tableView.setSizeHeight(height: ScreenHeight - imgBackgroud.height())
- tableView.register(UINib(nibName: "SelectBankTableViewCell", bundle: nil), forCellReuseIdentifier: "SelectBankTableViewCell")
- tableView.delegate = self
- tableView.dataSource = self
- tableView.separatorStyle = .none
- tableView.showsVerticalScrollIndicator = false
- tableView.estimatedRowHeight = 100
- tableView.keyboardDismissMode = .onDrag
- txtCode.delegate = self
- txtCode.returnKeyType = .search
- }
- @IBAction func btnQuery(_ sender: Any) {
- loadData(key: "")
- }
- func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
- return true
- }
- func textFieldShouldReturn(_ textField: UITextField) -> Bool {
- loadData(key: "")
- return true
- }
- // MARK: =============加载数据===============
- func loadData(key: String) //str:String
- {
- if (txtCode.text! == "未识别银行"){
- return
- }
- let url = RequestURL.qybFindBankList
- let params = NSMutableDictionary()
- if key != "" {
- params.setValue(key, forKey: "issuser_name")
- } else {
- params.setValue(txtCode.text!, forKey: "issuser_name")
- }
- loadDataList(url: url, params: params, tableView: tableView, tag: 1001)
- }
- override func returnData(tag: Int) {
- if tag == 1001 {
- tableView.reloadData()
- }
- }
- override func returnError(tag: Int, type: String) {
- }
- // MARK: TABLEVLEW 实现
- func numberOfSections(in tableView: UITableView) -> Int {
- return 1
- }
- func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
- return self.arrData.count
- }
- func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
- return 48
- }
- func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
- let cell = tableView.dequeueReusableCell(withIdentifier: "SelectBankTableViewCell", for: indexPath as IndexPath) as! SelectBankTableViewCell
- cell.lblTitle.text = getString(current: indexPath.row, key: "issuser_name")
- return cell
- }
- func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
- mainViewControllerIsGo = true
- mainViewControllerIsGoType = 9901
- mainViewControllerIsGoValue = getString(current: indexPath.row, key: "issuser_name")
- mainViewControllerIsGoValue1 = getString(current: indexPath.row, key: "bank_code")
- mainViewControllerIsGoValue2 = getString(current: indexPath.row, key: "bank_link_no")
- handleBack()
- }
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
- appDelegate.setNavigationBarHidden(isHidden: true)
- if bankName != "" && bankName != "未识别银行" {
- loadData(key: bankName)
- } else {
- loadData(key: "")
- }
- }
- override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
- super.init(nibName: "BJSelectBankViewController", bundle: nil)
- }
- required init?(coder aDecoder: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
- }
|