ArticleManagerViewController.swift 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. //
  2. // ArticleManagerViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/4/25.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ArticleManagerViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate, SDPhotoBrowserDelegate {
  10. @IBOutlet weak var viewMenu: UIView!
  11. @IBOutlet weak var tableView: UITableView!
  12. var typeId = ""
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. self.title = "文案库"
  16. initNavLeftBackButton()
  17. tableView.register(UINib(nibName: "ArticleManagerTableViewCell", bundle: nil), forCellReuseIdentifier: "ArticleManagerTableViewCell")
  18. tableView.delegate = self
  19. tableView.dataSource = self
  20. tableView.separatorStyle = .none
  21. tableView.showsVerticalScrollIndicator = false
  22. tableView.estimatedRowHeight = 100
  23. tableView.mj_header = MJRefreshNormalHeader(refreshingBlock: {[weak self] in
  24. self!.currentPage = 1
  25. self!.loadData()
  26. })
  27. tableView.mj_header?.lastUpdatedTimeKey = "ShowTableViewCell"
  28. tableView.mj_footer = MJRefreshBackNormalFooter(refreshingBlock: {[weak self] in
  29. self!.currentPage += 1
  30. self!.loadData()
  31. })
  32. loadType()
  33. }
  34. ///加载头部的菜单
  35. func loadMenu() {
  36. var arrTitle = [String]()
  37. for i in 0 ..< arrType.count {
  38. arrTitle.append(arrType.getString(index: i, key: "name"))
  39. }
  40. let segment = Virgil_SegmentView(frame: CGRect(x: 0, y: 0, width: ScreenWidth, height: 47), titles: arrTitle, defaultColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x333333, alpha: 1.0), currentColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x2094F5, alpha: 1.0), lineHeight: 2, lineIsBottom: true) {[weak self] (index) in
  41. self!.currentPage = 1
  42. self!.typeId = self!.arrType.getString(index: index, key: "id")
  43. self!.tableView.mj_header?.beginRefreshing()
  44. }
  45. self.viewMenu.addSubview(segment)
  46. typeId = arrType.getString(index: 0, key: "id")
  47. tableView.mj_header?.beginRefreshing()
  48. }
  49. let arrType = NSMutableArray()
  50. // MARK: =============加载数据===============
  51. func loadType() {
  52. let url = RequestURL.getInformationTypeName
  53. let params = NSMutableDictionary()
  54. // params.setValue(, forKey: "typeId")
  55. TloadDataList(url: url, params: params, tag: 1001, array: arrType)
  56. }
  57. func loadData() {
  58. let url = RequestURL.informationPageList
  59. let params = NSMutableDictionary()
  60. params.setValue(typeId, forKey: "typeId")
  61. loadDataList(url: url, params: params, tableView: self.tableView, tag: 1002)
  62. }
  63. override func returnData(tag: Int) {
  64. if tag == 1001 {
  65. if arrType.count > 0 {
  66. loadMenu()
  67. } else {
  68. SVProgressHUD.showError(withStatus: "文案类型加载失败,请重试")
  69. loadData()
  70. }
  71. } else if tag == 1002 {
  72. tableView.reloadData()
  73. }
  74. }
  75. override func returnError(tag: Int, type: String) {
  76. }
  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, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  85. let cell = tableView.dequeueReusableCell(withIdentifier: "ArticleManagerTableViewCell", for: indexPath as IndexPath) as! ArticleManagerTableViewCell
  86. cell.viewImages.tag = indexPath.row
  87. cell.btnImage1.addTarget(self, action: #selector(centerBtnAction), for: .touchUpInside)
  88. cell.btnImage2.addTarget(self, action: #selector(centerBtnAction), for: .touchUpInside)
  89. cell.btnImage3.addTarget(self, action: #selector(centerBtnAction), for: .touchUpInside)
  90. cell.btnImage4.addTarget(self, action: #selector(centerBtnAction), for: .touchUpInside)
  91. cell.btnImage5.addTarget(self, action: #selector(centerBtnAction), for: .touchUpInside)
  92. cell.btnImage6.addTarget(self, action: #selector(centerBtnAction), for: .touchUpInside)
  93. cell.btnImage7.addTarget(self, action: #selector(centerBtnAction), for: .touchUpInside)
  94. cell.btnImage8.addTarget(self, action: #selector(centerBtnAction), for: .touchUpInside)
  95. cell.btnImage9.addTarget(self, action: #selector(centerBtnAction), for: .touchUpInside)
  96. cell.setContent(dic: self.arrData[indexPath.row] as! NSDictionary)
  97. //cell.lblTitle.text = getString(indexPath.row, key: "Name")
  98. return cell
  99. }
  100. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  101. // let vc = CommonWebViewViewController();
  102. // vc.strTitle = "详情"
  103. // vc.url = self.arrData.getString(index: indexPath.row, key: "webUrl")
  104. // toViewController(viewController: vc)
  105. }
  106. @IBAction func centerBtnAction(sender: UIButton) {
  107. if self.arrData.count <= sender.superview!.tag {
  108. return
  109. }
  110. let sd = SDPhotoBrowser()
  111. sd.tag = sender.tag
  112. viewTopImage = sender.superview!
  113. // if(sender.tag == 0)
  114. // {
  115. // viewTopImage = sender.superview!.subviews[sender.tag]!
  116. // }
  117. // else if(sender.tag == 1)
  118. // {
  119. // viewTopImage = sender.superview!
  120. // }
  121. // else if(sender.tag == 2)
  122. // {
  123. // viewTopImage = sender.superview!
  124. // }
  125. arrImagePaths.removeAll()
  126. let dic = self.arrData[sender.superview!.tag] as! NSDictionary
  127. if dic.getString(key: "imageone") != "" {
  128. arrImagePaths.append(dic.getString(key: "imageone"))
  129. }
  130. if dic.getString(key: "imagetwo") != "" {
  131. arrImagePaths.append(dic.getString(key: "imagetwo"))
  132. }
  133. if dic.getString(key: "imagethree") != "" {
  134. arrImagePaths.append(dic.getString(key: "imagethree"))
  135. }
  136. sd.sourceImagesContainerView = viewTopImage
  137. sd.imageCount = arrImagePaths.count
  138. sd.currentImageIndex = Int32(sender.tag)
  139. sd.delegate = self
  140. sd.show()
  141. }
  142. var viewTopImage = UIView()
  143. var arrImagePaths = [String]()
  144. // MARK: 图片
  145. func photoBrowser(_ browser: SDPhotoBrowser!, placeholderImageFor index: Int) -> UIImage! {
  146. return (viewTopImage.subviews[index] as! UIImageView).image!
  147. }
  148. func photoBrowser(_ browser: SDPhotoBrowser!, highQualityImageURLFor index: Int) -> URL! {
  149. return URL(string: arrImagePaths[index])
  150. }
  151. func photoBrowser(_ browser: SDPhotoBrowser!, select index: Int) {
  152. }
  153. override func viewWillAppear(_ animated: Bool) {
  154. super.viewWillAppear(animated)
  155. }
  156. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  157. super.init(nibName: "ArticleManagerViewController", bundle: nil)
  158. }
  159. required init?(coder aDecoder: NSCoder) {
  160. fatalError("init(coder:) has not been implemented")
  161. }
  162. }