MyViewController.swift 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. //
  2. // MyViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/22.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class MyViewController: BaseViewController, UITableViewDataSource, UITableViewDelegate {
  10. // @IBOutlet weak var btnOnLine: UIButton!
  11. @IBOutlet weak var imgTitle: UIImageView!
  12. @IBOutlet weak var tableView: UITableView!
  13. @IBOutlet weak var viewMenu3: UIView!
  14. @IBOutlet weak var viewMenu2: UIView!
  15. @IBOutlet weak var viewMenu1: UIView!
  16. @IBOutlet weak var btnCopyCode: UIButton!
  17. @IBOutlet weak var imgUserIcon: UIImageView!
  18. @IBOutlet weak var lblName: UILabel!
  19. @IBOutlet weak var lblCode: UILabel!
  20. @IBOutlet weak var viewTop: UIView!
  21. @IBOutlet var imgName: UILabel!
  22. // @IBOutlet weak var btnCall: UIButton!
  23. @IBOutlet weak var lblAmount1: UILabel!
  24. @IBOutlet weak var lblAmount2: UILabel!
  25. @IBOutlet weak var lblAmount3: UILabel!
  26. let arrTitle = [["我的钱包","我的政策", "我的订单", "实名认证", "提现签约认证", "修改结算卡"], ["展业守则", "帮助中心", "安全设置"], ["退出登录"]]
  27. let arrImage = [["qianbao","ion_personal_policy", "ion_personal_08", "ion_personal_02", "qianzheng", "ion_personal_03"], ["ion_personal_04", "ion_personal_05", "ion_personal_06"], ["ion_personal_07"]]
  28. override func viewDidLoad() {
  29. super.viewDidLoad()
  30. CommonViewUntils.setViewCenter(arrView: [viewMenu1, viewMenu2, viewMenu3], marginLeft: 30, marginRight: 30)
  31. if CommonUntils.isIphonex() {
  32. viewTop.setSizeHeight(height: 46 + 166)
  33. tableView.marginTop(top: 0, view: viewTop)
  34. tableView.setSizeHeight(height: ScreenHeight - viewTop.bottom() - 80)
  35. } else {
  36. viewTop.setSizeHeight(height: 22 + 166)
  37. tableView.marginTop(top: 0, view: viewTop)
  38. tableView.setSizeHeight(height: ScreenHeight - viewTop.bottom() - 50)
  39. }
  40. tableView.register(UINib(nibName: "CommonMyMenuTableViewCell", bundle: nil), forCellReuseIdentifier: "CommonMyMenuTableViewCell")
  41. tableView.delegate = self
  42. tableView.dataSource = self
  43. // tableView.separatorStyle = .none
  44. tableView.showsVerticalScrollIndicator = false
  45. tableView.estimatedRowHeight = 100
  46. if tableView.responds(to: #selector(setter: UITableViewCell.separatorInset)) {
  47. tableView.separatorInset = UIEdgeInsets.init(top: 0, left: 51, bottom: 0, right: 0)
  48. }
  49. if tableView.responds(to: #selector(setter: UITableViewCell.layoutMargins)) {
  50. tableView.layoutMargins = UIEdgeInsets.init(top: 0, left: 51, bottom: 0, right: 0)
  51. }
  52. // if !CommonUntils.isIphonex() {
  53. // btnCall.marginTop(top: btnCall.topm() + 20)
  54. // btnOnLine.marginBottom(bottom: 20, view: btnCall)
  55. // }
  56. }
  57. @IBAction func btnMenuClick(_ sender: AnyObject) {
  58. switch (sender as! UIButton).tag {
  59. case 1001: // 修改个人信息
  60. appDelegate.navController.pushViewController(PersonalInfoViewController(), animated: true)
  61. break
  62. case 1002: // 荣誉认证
  63. appDelegate.navController.pushViewController(QualificationsViewController(), animated: true)
  64. break
  65. case 1003: // 私信
  66. appDelegate.navController.pushViewController(NewsListViewController(), animated: true)
  67. break
  68. case 1004: // 电话
  69. if CommonUntils.getIsSimulator() {
  70. SVProgressHUD.showError(withStatus: "模拟器环境下不能拨打电话")
  71. } else {
  72. if CommonValue.getDefaultValueForKey(key: "customer_phone") != "" {
  73. CommonUntils.callPhone(phone: CommonValue.getDefaultValueForKey(key: "customer_phone"))
  74. }
  75. }
  76. break
  77. case 1005: //复制我的推荐码
  78. CommonUntils.copyString(str: CommonValue.getUserRecCode())
  79. SVProgressHUD.showSuccess(withStatus: "复制成功!")
  80. break
  81. case 1006: //
  82. let qySource = QYSource()
  83. qySource.title = "客服"
  84. qySource.urlString = ""
  85. let sessionQY = QYSDK.shared().sessionViewController()
  86. if sessionQY != nil {
  87. sessionQY!.sessionTitle = "在线客服"// CommonValue.getNikeName()
  88. sessionQY!.source = qySource
  89. sessionQY!.hidesBottomBarWhenPushed = true
  90. appDelegate.navController.pushViewController(sessionQY!, animated: true)
  91. initCusServiceBackButton(viewController: sessionQY!)
  92. }
  93. break
  94. default:
  95. break
  96. }
  97. }
  98. // MARK: TABLEVLEW 实现
  99. func numberOfSections(in tableView: UITableView) -> Int {
  100. return arrTitle.count
  101. }
  102. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  103. return arrTitle[section].count
  104. }
  105. func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
  106. return 10
  107. }
  108. func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
  109. return 58
  110. }
  111. func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
  112. let view = UIView.init()
  113. view.backgroundColor = UIColor.init(white: 242/255.0, alpha: 1.0)
  114. return view
  115. }
  116. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  117. let cell = tableView.dequeueReusableCell(withIdentifier: "CommonMyMenuTableViewCell", for: indexPath as IndexPath) as! CommonMyMenuTableViewCell
  118. cell.lblTitle.text = arrTitle[indexPath.section][indexPath.row]
  119. cell.btnLeftImage.setImage(UIImage(named: arrImage[indexPath.section][indexPath.row]), for: .normal)
  120. cell.lblRight.isHidden = true
  121. cell.imgRightContent.isHidden = true
  122. cell.viewLine.isHidden = true
  123. if arrTitle[indexPath.section][indexPath.row] == "实名认证" {
  124. ///未实名或审核未通过
  125. if(CommonValue.getUserIsAuthentication() == -1) //未登录
  126. {
  127. cell.lblRight.isHidden = true
  128. cell.imgRightContent.isHidden = true
  129. } else if CommonValue.getUserIsAuthentication() == 0 || CommonValue.getUserIsAuthentication() == 3 {
  130. cell.lblRight.isHidden = true
  131. cell.imgRightContent.isHidden = true
  132. } else if(CommonValue.getUserIsAuthentication() == 1) //审核中
  133. {
  134. cell.lblRight.isHidden = false
  135. cell.imgRightContent.isHidden = true
  136. cell.lblRight.text = "审核中"
  137. } else //审核已通过
  138. {
  139. cell.lblRight.isHidden = false
  140. cell.imgRightContent.isHidden = false
  141. cell.lblRight.text = CommonValue.getUserRealName()
  142. }
  143. }
  144. return cell
  145. }
  146. func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
  147. if cell.responds(to: #selector(setter: UITableViewCell.separatorInset)) {
  148. cell.separatorInset = UIEdgeInsets.init(top: 0, left: 51, bottom: 0, right: 0)
  149. }
  150. if cell.responds(to: #selector(setter: UITableViewCell.layoutMargins)) {
  151. cell.layoutMargins = UIEdgeInsets.init(top: 0, left: 51, bottom: 0, right: 0)
  152. }
  153. }
  154. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  155. let titleStr: String = arrTitle[indexPath.section][indexPath.row]
  156. if titleStr == "我的订单" {
  157. let viewWeb = MyOrderViewController()
  158. toViewController(viewController: viewWeb)
  159. } else if titleStr == "实名认证" {
  160. ///未实名或审核未通过
  161. if CommonValue.getUserIsAuthentication() == 0 || CommonValue.getUserIsAuthentication() == 3 {
  162. let viewWeb = RealNameAuthViewController()
  163. toViewController(viewController: viewWeb)
  164. } else if(CommonValue.getUserIsAuthentication() == 1) //审核中
  165. {
  166. SVProgressHUD.showError(withStatus: "实名认证信息正在审核中")
  167. appDelegate.reloadUserInfo()
  168. } else //审核已通过
  169. {
  170. let viewWeb = RealNameDetailViewController()
  171. toViewController(viewController: viewWeb)
  172. }
  173. } else if titleStr == "我的钱包" {
  174. let viewWeb = WalletHomeVC()
  175. GB_Nav.pushViewController(viewWeb, animated: true)
  176. // toViewController(viewController: viewWeb)
  177. }else if titleStr == "修改结算卡" {
  178. let viewWeb = ModBankCardViewController()
  179. toViewController(viewController: viewWeb)
  180. }else if titleStr == "提现签约认证" {
  181. self.loadData()
  182. } else if titleStr == "邀请好友" {
  183. let viewWeb = InviteViewController()
  184. toViewController(viewController: viewWeb)
  185. } else if titleStr == "安全设置" {
  186. let viewWeb = SafeSettingViewController()
  187. toViewController(viewController: viewWeb)
  188. } else if titleStr == "帮助中心" {
  189. let viewWeb = HelpListViewController()
  190. toViewController(viewController: viewWeb)
  191. } else if titleStr == "展业守则" {
  192. let viewWeb = CommonWebViewViewController()
  193. viewWeb.strTitle = "展业守则"
  194. viewWeb.url = "\(RequestURL.sysConfigWeb)?type=exhibition_rules"
  195. viewWeb.sourceType = 0
  196. appDelegate.navController.pushViewController(viewWeb, animated: true)
  197. } else if titleStr == "我的政策" {
  198. let vc = BrandListViewController()
  199. vc.strTitle = "我的政策"
  200. toViewController(viewController: vc)
  201. } else if titleStr == "我的学习" {
  202. let vc = StudyViewController()
  203. toViewController(viewController: vc)
  204. } else if titleStr == "退出登录" {
  205. CommonValue.setDefaultUserInfoForString(value: "0", key: "common_default_is_ss_password")
  206. CommonValue.clearLoginUser()
  207. GlobalMethod.logoutSuccess()
  208. if !GlobalMethod.isLoginSuccess(){
  209. let vcvc = LoginViewController()
  210. GB_Nav.pushViewController(vcvc, animated: true)
  211. }
  212. }
  213. }
  214. // MARK: request
  215. func loadData() {
  216. let url = RequestURL.rz
  217. let params = NSMutableDictionary()
  218. params.setValue(CommonValue.getUserId(), forKey: "userId")
  219. params.setValue("0000", forKey: "code")
  220. params.setValue("", forKey: "returnUrl")
  221. loadDataInfoPostRZ(url: url, params: params, tag: 1001)
  222. }
  223. override func returnData(tag: Int) {
  224. if tag == 1001 {
  225. let htmlPath = "\(self.dicData["message"]as!String)"
  226. let viewWeb = SigningCertificationVC()
  227. viewWeb.htmlPath = htmlPath
  228. toViewController(viewController: viewWeb)
  229. }
  230. }
  231. override func notiReloadUser(noti: NSNotification) {
  232. tableView.reloadData()
  233. }
  234. override func viewWillAppear(_ animated: Bool) {
  235. super.viewWillAppear(animated)
  236. appDelegate.setNavigationBarHidden(isHidden: true)
  237. reloadUserInfo()
  238. }
  239. func resetView(){
  240. lblCode.text = CommonValue.getUserRecCode()
  241. // if CommonValue.getUserLogo() == "" {
  242. // lblName.marginLeft(left: imgUserIcon.frame.origin.x)
  243. // imgUserIcon.isHidden = true
  244. // } else {
  245. lblName.marginLeft(left: 57)
  246. imgUserIcon.loadImage(imgUrl: CommonValue.getUserLogo(), defaultImage: "common_user")
  247. imgUserIcon.setCornerRadius()
  248. imgUserIcon.isHidden = false
  249. // }
  250. lblName.text = CommonValue.getUserNickName()
  251. lblName.setSizeWidth(width: 200)
  252. lblName.sizeToFitWidth()
  253. lblCode.sizeToFitWidth()
  254. btnCopyCode.marginLeft(left: 4, view: lblCode)
  255. imgTitle.marginLeft(left: 2, view: lblName)
  256. imgName.marginLeft(left: 4, view: lblName)
  257. lblAmount1.text = "\(CommonValue.getUserAgentNum())"
  258. lblAmount2.text = "\(CommonValue.getUserMerchantNum())"
  259. lblAmount3.text = "\(CommonValue.getUserProfitTotal())"
  260. imgTitle.loadImage(imgUrl: CommonValue.getULevelPic(), defaultImage: "")
  261. imgName.text = "\(CommonValue.getUserLevelName())"
  262. // imgTitle.image = UIImage(named: "member\(CommonValue.getUserLevel())")
  263. tableView.reloadData()
  264. if CommonValue.checkIsAS() {
  265. imgTitle.isHidden = true
  266. }
  267. if CommonValue.getULevelPic() == ""{
  268. imgTitle.isHidden = true
  269. imgName.isHidden = false
  270. }else{
  271. imgTitle.isHidden = false
  272. imgName.isHidden = true
  273. }
  274. }
  275. ///更新用户信息
  276. func reloadUserInfo() {
  277. if CommonValue.getUserId() == "" {
  278. return
  279. }
  280. let params = NSMutableDictionary()
  281. // let http = AFHTTPSessionManager()
  282. // http.requestSerializer.setValue(CommonValue.getUserId(), forHTTPHeaderField: "userId")
  283. // http.requestSerializer.setValue("1", forHTTPHeaderField: "phoneType")
  284. // http.requestSerializer.setValue(CommonUntils.getSystemVersion(), forHTTPHeaderField: "apkVersion")
  285. let http = CommonValue.getHttp()
  286. params.setValue(CommonValue.getUserId(), forKey: "userId")
  287. let url = RequestURL.findUserById
  288. http.get(url, parameters: params, progress: nil, success: {[weak self] (_, json1) -> Void in
  289. let json = json1 as! NSDictionary
  290. let succeed = json.object(forKey: "succeed") as! String
  291. if succeed == "000" {
  292. let dataInfo = json["dataInfo"] as? NSDictionary
  293. if dataInfo != nil {
  294. CommonValue.setLoginUserInfo(loginUser: NSMutableDictionary(dictionary: dataInfo!))
  295. self!.initCusServiceUserInfo()
  296. }
  297. }
  298. }, failure: { (_, _) -> Void in
  299. })
  300. }
  301. func initCusServiceUserInfo() {
  302. let userInfo = QYUserInfo()
  303. userInfo.userId = CommonValue.getUserId()
  304. let dicName = ["key": "real_name", "value": CommonValue.getUserNickName()]
  305. let dicPhone = ["key": "mobile_phone", "value": CommonValue.getUserPhone()]
  306. let dicCode = ["key": "bankcard", "value": CommonValue.getUserRecCode(), "index": "0", "label": "推荐码"]
  307. let array = NSMutableArray(array: [dicName, dicPhone, dicCode])
  308. userInfo.data = CommonJSON.arrayToJson(arr: array)
  309. QYSDK.shared()?.setUserInfo(userInfo, authTokenVerificationResultBlock: { (succ) in
  310. print("====\(succ)===")
  311. })
  312. resetView()
  313. }
  314. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  315. super.init(nibName: "MyViewController", bundle: nil)
  316. }
  317. required init?(coder aDecoder: NSCoder) {
  318. fatalError("init(coder:) has not been implemented")
  319. }
  320. }