PayShoppingMallViewController.swift 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. //
  2. // PayViewController.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2019/2/19.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class PayShoppingMallViewController: BaseViewController {
  10. var money = ""
  11. @IBOutlet weak var lblMoney: UILabel!
  12. @IBOutlet weak var btnMenu2: Virgil_ListMenuSelectButton!
  13. @IBOutlet weak var btnMenu1: Virgil_ListMenuSelectButton!
  14. @IBOutlet weak var btnPay: UIButton!
  15. @IBOutlet weak var viewContent: UIView!
  16. @IBOutlet weak var lblRemark2: UILabel!
  17. ///0:创建订单支付 2:订单详情支付
  18. var fromType = 0
  19. /// 0:支付宝支付 1:微信支付
  20. var payType = 0
  21. var orderId = ""
  22. override func viewDidLoad() {
  23. super.viewDidLoad()
  24. self.title = "支付"
  25. initNavLeftBackButton()
  26. btnPay.setCornerRadius(size: btnPay.height() / 2)
  27. let strMoney = "¥\(money)"
  28. lblMoney.attributedText = CommonViewUntils.getAttributedStringForFont(str: strMoney, rangs: [NSRange.init(location: 0, length: 1), NSRange.init(location: 1, length: money.length())], fonts: [UIFont.systemFont(ofSize: 12), UIFont.systemFont(ofSize: 30)])
  29. btnMenu1.isSelected = true
  30. btnMenu2.isSelected = false
  31. }
  32. //btnAddTarget(view: self.view, selector: #selector(self.btnMenuClick))
  33. @IBAction func btnMenuClick(_ sender: AnyObject) {
  34. switch (sender as! UIButton).tag {
  35. case 1001: // 支付宝支付
  36. payType = 0
  37. btnMenu1.isSelected = true
  38. btnMenu2.isSelected = false
  39. break
  40. case 1002: // 微信支付
  41. payType = 1
  42. btnMenu1.isSelected = false
  43. btnMenu2.isSelected = true
  44. break
  45. case 1003: // 支付
  46. paySubmit()
  47. break
  48. case 1004: //
  49. break
  50. case 1005: //
  51. break
  52. case 1006: //
  53. break
  54. default:
  55. break
  56. }
  57. }
  58. // MARK: =============加载数据===============
  59. func paySubmit() {
  60. if(payType == 0) //支付宝支付
  61. {
  62. if !CommonValidate.checkAlipayIsInstall() {
  63. CommonUntils.AlertView(controller: self, title: "提示", message: "您还没有安装支付宝,请先下载安装支付宝客户端", buttons: ["去安装"], style: .alert) { (_, _) in
  64. let url22 = "https://itunes.apple.com/cn/app/zhi-fu-bao-zhifubao-kou-bei/id333206289?l=zh&mt=8"
  65. UIApplication.shared.openURL(URL(string: url22)!)
  66. }
  67. return
  68. }
  69. } else //微信支付
  70. {
  71. if !CommonValidate.checkWeiXinIsInstall() {
  72. CommonUntils.AlertView(controller: self, title: "提示", message: "您还没有安装微信,请先下载安装微信客户端", buttons: ["去安装"], style: .alert) { (_, _) in
  73. let url22 = "https://itunes.apple.com/cn/app/wechat/id414478124?l=zh&mt=8"
  74. UIApplication.shared.openURL(URL(string: url22)!)
  75. }
  76. return
  77. }
  78. }
  79. var url = RequestURL.payProductOrder
  80. let params = NSMutableDictionary()
  81. if(payType == 0) //支付宝支付
  82. {
  83. url = RequestURL.alipaySignT
  84. params.setValue(orderId, forKey: "id")
  85. } else //微信支付
  86. {
  87. url = RequestURL.wxSignProductT
  88. params.setValue(orderId, forKey: "id")
  89. }
  90. let http = AFHTTPSessionManager()
  91. http.get(url, parameters: params, progress: { (_) in
  92. }, success: { (operation, json) in
  93. print(json as Any)
  94. let success = (json as! NSDictionary).object(forKey: "statusCode") as! Int
  95. if success == 200 {
  96. if self.payType == 0 {
  97. let sign = (json as! NSDictionary).object(forKey: "data") as! String
  98. let appScheme = "xingchuangkealipay"
  99. AlipaySDK.defaultService().payOrder(sign, fromScheme: appScheme, callback: { (result) in
  100. print("-----支付宝回调\n\(result)\n------")
  101. if result?["resultStatus"] as! String == "9000" {
  102. } else if result?["resultStatus"] as! String == "6001" {
  103. //用户取消支付 不处理
  104. } else {
  105. }
  106. })
  107. } else {//orderId String "be9a06e052d74fa1933603819240cdef"
  108. let dataInfo = (json as! NSDictionary).object(forKey: "data") as! NSDictionary
  109. let boo = TestSign.pay_demo(dataInfo as [NSObject: AnyObject])
  110. if boo {
  111. } else {
  112. CommonUntils.alert(message: "支付失败,请重新支付!")
  113. MBProgressHUD.hide(for: self.view, animated: true)
  114. }
  115. }
  116. }
  117. }) { (_, _) in
  118. }
  119. // submitData(url: url, params: params, tag: 1001)
  120. }
  121. // override func returnData(tag:Int) {
  122. // if(tag == 1001)
  123. // {
  124. //
  125. // ///t余额支付走接口,其他走微信支付
  126. // if(payType == 0)
  127. // {
  128. // AlipaySDK.defaultService().payOrder(self.dicBackDataAnyObject as! String, fromScheme: "xingchuangkealipay", callback: { (resultBack) in
  129. // })
  130. // }
  131. // else
  132. // {
  133. // let boo = TestSign.pay_demo(self.dicBackData as [NSObject : AnyObject])
  134. // if boo
  135. // {
  136. //
  137. // }
  138. // else
  139. // {
  140. // CommonUntils.alert(message: "支付失败,请重新支付!")
  141. // MBProgressHUD.hide(for:self.view, animated: true)
  142. // }
  143. // }
  144. // }
  145. // }
  146. // MARK: ======支付回调===
  147. @objc func alipayresult(notity: NSNotification) {
  148. print("=====支付页面===")
  149. let isWin = notity.object as! String
  150. if isWin == "9000" {
  151. SVProgressHUD.showSuccess(withStatus: "支付成功")
  152. self.perform(#selector(backView), with: nil, afterDelay: 1)
  153. print("==支付宝====支付成功")
  154. // let selectImage = LGAlertView(title: "提示", message: "支付成功!", style: .alert, buttonTitles: ["确定"], cancelButtonTitle: nil, destructiveButtonTitle: nil ,actionHandler: { (alertView, title, index) -> Void in
  155. // self.backView();
  156. // }, cancelHandler: { void in
  157. // self.backView();
  158. // }, destructiveHandler: nil)!
  159. // selectImage.show(animated: true, completionHandler: nil)
  160. } else if isWin == "6001" {
  161. print("===支付宝===取消支付")
  162. //用户取消支付 不处理
  163. } else {
  164. print("===支付宝===支付失败")
  165. CommonUntils.alert(message: "支付失败,请重新支付!")
  166. }
  167. }
  168. /**
  169. 微信支付回调方法
  170. :param: notity <#notity description#>
  171. */
  172. @objc func weixinpayresult(notity: NSNotification) {
  173. let isWin = notity.object as! String
  174. if isWin == "0" {
  175. if fromType == 0 {
  176. SVProgressHUD.showSuccess(withStatus: "支付成功")
  177. } else if fromType == 1 || fromType == 2 {
  178. SVProgressHUD.showSuccess(withStatus: "支付成功")
  179. } else if fromType == 3 {
  180. SVProgressHUD.showSuccess(withStatus: "支付成功")
  181. }
  182. self.perform(#selector(backView), with: nil, afterDelay: 1)
  183. } else if isWin == "-1" {
  184. print("===微信===支付失败")
  185. CommonUntils.alert(message: "支付失败,请重新支付!")
  186. } else if isWin == "-2" {
  187. print("===微信===支付取消")
  188. //用户取消支付,不处理
  189. }
  190. }
  191. @objc func backView() {
  192. appDelegate.reloadUserInfo()
  193. if fromType == 0 {
  194. let vc = MyOrderViewController()
  195. vc.fromType = 1
  196. toViewController(viewController: vc)
  197. } else {
  198. common_back_is_reload = true
  199. if !CommonUntils.reBackView(controller: self, aclass: MyOrderViewController.classForCoder()) {
  200. self.navigationController?.popToRootViewController(animated: true)
  201. }
  202. }
  203. }
  204. override func returnError(tag: Int, type: String) {
  205. }
  206. override func viewWillAppear(_ animated: Bool) {
  207. super.viewWillAppear(animated)
  208. let nc = NotificationCenter.default
  209. nc.addObserver(self, selector: #selector(self.weixinpayresult), name: NSNotification.Name(rawValue: "notification_weixinpay"), object: nil)
  210. nc.addObserver(self, selector: #selector(self.alipayresult), name: NSNotification.Name(rawValue: "notification_alipay"), object: nil)
  211. }
  212. override func viewWillDisappear(_ animated: Bool) {
  213. super.viewWillDisappear(animated)
  214. NotificationCenter.default.removeObserver(NSNotification.Name(rawValue: "notification_weixinpay"))
  215. NotificationCenter.default.removeObserver(NSNotification.Name(rawValue: "notification_alipay"))
  216. }
  217. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  218. super.init(nibName: "PayShoppingMallViewController", bundle: nil)
  219. }
  220. required init?(coder aDecoder: NSCoder) {
  221. fatalError("init(coder:) has not been implemented")
  222. }
  223. }