123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- //
- // NewsListViewController.swift
- // xingchuangke
- //
- // Created by Virgil on 2019/4/17.
- // Copyright © 2019 Virgil. All rights reserved.
- //
- import UIKit
- class NewsListViewController: BaseViewController, UITableViewDelegate, UITableViewDataSource {
- @IBOutlet weak var tableView: UITableView!
- override func viewDidLoad() {
- super.viewDidLoad()
- initNavLeftBackButton()
- self.title = "系统消息"
- tableView.register(UINib(nibName: "NewsListTableViewCell", bundle: nil), forCellReuseIdentifier: "NewsListTableViewCell")
- tableView.delegate = self
- tableView.dataSource = self
- tableView.separatorStyle = .none
- tableView.showsVerticalScrollIndicator = false
- tableView.estimatedRowHeight = 100
- tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
- self!.currentPage = 1
- self!.loadData()
- })
- tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
- tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
- self!.currentPage += 1
- self!.loadData()
- })
- tableView.mj_header?.beginRefreshing()
- }
- // MARK: =============加载数据===============
- func loadData() {
- let url = RequestURL.messagePageList
- let params = NSMutableDictionary()
- loadDataList(url: url, params: params, tableView: self.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 140
- }
- func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
- let cell = tableView.dequeueReusableCell(withIdentifier: "NewsListTableViewCell", for: indexPath as IndexPath) as! NewsListTableViewCell
- let type = getIntValue(current: indexPath.row, key: "type")
- if type == 0 {
- cell.lblTitle.text = "系统消息"
- } else {
- cell.lblTitle.text = "系统公告"
- }
- cell.lblContent.text = getString(current: indexPath.row, key: "title")
- cell.lblDate.text = getString(current: indexPath.row, key: "send_time")
- return cell
- }
- func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
- if indexPath.row >= arrData.count {
- return
- }
- let vc = CommonWebViewViewController()
- vc.strTitle = "详情"//getString(current: indexPath.row, key: "title");
- vc.url = getString(current: indexPath.row, key: "detailWeb")
- toViewController(viewController: vc)
- }
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
- }
- override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
- super.init(nibName: "NewsListViewController", bundle: nil)
- }
- required init?(coder aDecoder: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
- }
|