PersonalInfoViewController.swift 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. //
  2. // PersonalnfoViewController.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2019/1/28.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class PersonalInfoViewController: BaseViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate {
  10. @IBOutlet weak var lblAccount: UILabel!
  11. @IBOutlet weak var btnExit: UIButton!
  12. @IBOutlet weak var lblName: UILabel!
  13. @IBOutlet weak var imgIcon: UIImageView!
  14. @IBOutlet weak var lblNo: UILabel!
  15. var imgIconUrl = ""
  16. override func viewDidLoad() {
  17. super.viewDidLoad()
  18. self.title = "个人资料"
  19. initNavLeftBackButton()
  20. // Do any additional setup after loading the view.
  21. //btnExit.setCornerRadius(size: btnExit.height() / 2);
  22. imgIconUrl = CommonValue.getUserLogo()
  23. }
  24. //btnAddTarget(view: self.view, selector: #selector(self.btnMenuClick))
  25. @IBAction func btnMenuClick(_ sender: AnyObject) {
  26. switch (sender as! UIButton).tag {
  27. case 1001: // 头像
  28. btnLogoClick()
  29. break
  30. case 1002: // 性别
  31. break
  32. case 1003: // 昵称
  33. let vc = ModUserInfoViewController()
  34. vc.type = 0
  35. toViewController(viewController: vc)
  36. break
  37. case 1004: // 保存
  38. saveData()
  39. break
  40. case 1005: // 签名
  41. let vc = ModUserInfoViewController()
  42. vc.type = 1
  43. toViewController(viewController: vc)
  44. break
  45. case 1006: // 出生日期
  46. break
  47. default:
  48. break
  49. }
  50. }
  51. // MARK: =============加载数据===============
  52. func saveData() {
  53. let url = RequestURL.editUser
  54. let params = NSMutableDictionary()
  55. params.setValue(CommonValue.getUserId(), forKey: "userId")
  56. params.setValue(imgIconUrl, forKey: "headPortrait")
  57. submitData(url: url, params: params, tag: 1001)
  58. }
  59. override func returnData(tag: Int) {
  60. if tag == 1001 {
  61. appDelegate.reloadUserInfo()
  62. SVProgressHUD.showSuccess(withStatus: "修改成功")
  63. }
  64. }
  65. override func returnError(tag: Int, type: String) {
  66. if tag == 1001 {
  67. }
  68. }
  69. // MARK: ============选择头像============
  70. func btnLogoClick() {
  71. CommonUntils.AlertView(controller: self, title: nil, message: nil, buttons: ["拍照上传", "从相册上传"], style: .actionSheet) {[weak self] (index, _) in
  72. let ipc = UIImagePickerController()
  73. if index == 0 {
  74. ipc.sourceType = .camera
  75. } else {
  76. ipc.sourceType = .photoLibrary
  77. }
  78. ipc.delegate = self!
  79. ipc.allowsEditing = true
  80. self!.present(ipc, animated: true, completion: nil)
  81. }
  82. }
  83. var imgTemp: UIImage!
  84. func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey: Any]) {
  85. self.dismiss(animated: true) {[weak self] in
  86. var imgTemp: UIImage? = info[UIImagePickerController.InfoKey.originalImage] as? UIImage
  87. if picker.allowsEditing {
  88. imgTemp = info[UIImagePickerController.InfoKey.editedImage] as? UIImage
  89. }
  90. if imgTemp != nil {
  91. self!.UploadFile(img: imgTemp!)
  92. } else {
  93. SVProgressHUD.showError(withStatus: "图片选择失败,请重试")
  94. }
  95. }
  96. }
  97. func UploadFile(img: UIImage) {
  98. let qiNiuUpload = QiNiuUploadFile()
  99. qiNiuUpload.uploadFile(img: img) {[weak self] (type, str) in
  100. if type == 1 {
  101. self!.imgIconUrl = RequestURL.qiNiuImageUrl + str
  102. self!.imgIcon.loadImage(imgUrl: self!.imgIconUrl, defaultImage: "common_user")
  103. self!.imgIcon.setCornerRadius()
  104. } else {
  105. SVProgressHUD.showError(withStatus: "图片上传失败,请重新选择!")
  106. }
  107. }
  108. }
  109. override func notiReloadUser(noti: NSNotification) {
  110. lblName.text = CommonValue.getUserNickName()
  111. lblAccount.text = CommonValue.getUserPhone()
  112. lblNo.text = CommonValue.getUserRecCode()
  113. }
  114. override func viewWillAppear(_ animated: Bool) {
  115. super.viewWillAppear(animated)
  116. imgIcon.loadImage(imgUrl: CommonValue.getUserLogo(), defaultImage: "common_user")
  117. imgIcon.setCornerRadius()
  118. lblName.text = CommonValue.getUserNickName()
  119. lblAccount.text = CommonValue.getUserPhone()
  120. lblNo.text = CommonValue.getUserRecCode()
  121. }
  122. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  123. super.init(nibName: "PersonalInfoViewController", bundle: nil)
  124. }
  125. required init?(coder aDecoder: NSCoder) {
  126. fatalError("init(coder:) has not been implemented")
  127. }
  128. /*
  129. // MARK: - Navigation
  130. // In a storyboard-based application, you will often want to do a little preparation before navigation
  131. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  132. // Get the new view controller using segue.destination.
  133. // Pass the selected object to the new view controller.
  134. }
  135. */
  136. }