r
2025-09-09 2b133a75c3199d0e737ad2263f670c834d769ab1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
//
//  PaymentResultVC.swift
//  WanPai
//
//  Created by 杨锴 on 2023/6/8.
//
 
import UIKit
import JQTools
 
class PaymentResultVC: BaseVC, UITableViewDelegate, UITableViewDataSource {
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return couponList.count + ticketList.count
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        if  indexPath.row < couponList.count {
            let cell = tableView.dequeueReusableCell(withIdentifier: "_WelfareCouponsTCell", for: indexPath) as! WelfareCouponsTCell
            cell.indexPath = indexPath
            let  m =  couponList[indexPath.row]
            m.useStatus = .unused
            m.goJB = true
            cell.couponModel = m
            return cell
        }else{
            let cell = tableView.dequeueReusableCell(withIdentifier: "CouponCellTwoId", for: indexPath) as! CouponCellTwo
            
            cell.nameLab.text = ticketList[indexPath.row - couponList.count].name
            cell.timeLab.text = "领取后\(ticketList[indexPath.row - couponList.count].time )有效"
            cell.numberLab.text = "\(ticketList[indexPath.row - couponList.count].count )张"
            
            
            return cell
        }
    }
    
    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
 
            if  indexPath.row <  couponList.count {
                let model = couponList[indexPath.row ]
                if rows.contains(where: {$0 == indexPath.row}){
                    let h = max(String.jq_getHeight(text: model.instructionsForUse , width: UIScreen.main.bounds.size.width - 200, font: 12), 30)
                    return h + 125
                }else{
                    return 125
                }
            }else{
            return 110
            }
    }
    
    
 
                enum PaymentResult:Equatable{
                                case success
                                case fail(String,Int)
                }
                enum PaymentObjType{
                                case member //会员
                                case courseApply //运动营报名
                                case courseSUPApply //运动营报名[体验]
                                case activityApply //活动报名
                                case worldCup
                                case yard //场地预约
                                case games //游戏
                                case exchange //替换
                                case recharge //充值
        case huimin //惠民
                }
 
 
                @IBOutlet weak var img_paymentState: UIImageView!
                @IBOutlet weak var label_content: UILabel!
                @IBOutlet weak var collectionView: UICollectionView!
                @IBOutlet weak var btn_backHome: UIButton!
                @IBOutlet weak var btn_again: UIButton!
                @IBOutlet weak var btn_back: UIButton!
 
                private var result:PaymentResult!
                private var objType:PaymentObjType!
                private var courseConfigId:Int?
                private var handleVC:UIViewController?
                private var models = [Any]() //CouponInfoModel ,CourseCouponModel
                private var againClouse:(()->Void)?
 
                var isExtend:Bool = false
                var otherInfo:Dictionary<String,Any>?
    private var rows = Set<Int>()
    @IBOutlet weak var tableview: UITableView!
    @IBOutlet weak var tabBgView: UIView!
    
    var couponList = [CouponModel]()
    var ticketList = [TicketModel]()
    required init(result:PaymentResult,objType:PaymentObjType,handleVC:UIViewController? = nil,courseConfigId:Int? = nil,list1:[CouponModel] = [],list2:[TicketModel] = [],againClouse:(()->Void)? = nil) {
                                super.init(nibName: nil, bundle: nil)
                                self.result = result
                                self.objType = objType
                                self.handleVC = handleVC
                                self.againClouse = againClouse
                                self.courseConfigId = courseConfigId
        self.couponList = list1
        self.ticketList = list2
                }
 
                required init?(coder: NSCoder) {
                                fatalError("init(coder:) has not been implemented")
 
                }
 
                override func viewDidLoad() {
                                super.viewDidLoad()
                    tableview.separatorStyle = .none
                    tableview.delegate = self
                    tableview.dataSource = self
                    tableview.register(UINib(nibName: "CouponCellTwo", bundle: nil), forCellReuseIdentifier: "CouponCellTwoId")
                    tableview.register(UINib(nibName: "WelfareCouponsTCell", bundle: nil), forCellReuseIdentifier: "_WelfareCouponsTCell")
                    NotificationCenter.default.rx.notification(WelfareCoupons_Noti).take(until: self.rx.deallocated).subscribe(onNext: {noti in
                        if let row = noti.object as? Int{
                            if self.rows.contains(row){
                                self.rows.remove(row)
                            }else{
                                self.rows.insert(row)
                            }
                            self.tableview.beginUpdates()
                            self.tableview.reloadRows(at: [IndexPath(row: row, section: 0)], with: .fade)
                            self.tableview.endUpdates()
                        }
                    }).disposed(by: disposeBag)
                    tableview.reloadData()
                                if result == .success{
                                                title = "支付成功"
                                                img_paymentState.image = UIImage(named: "icon_success")
                                                NotificationCenter.default.post(name: UpdateWelfare_Noti, object: nil, userInfo: nil)
                                }else{
                                                title = "支付失败"
                                                img_paymentState.image = UIImage(named: "icon_fail")
                                }
 
                                switch objType{
 
                                                case.worldCup:
                                                                btn_backHome.isHidden = true
                                                                switch result {
                                                                                case .success:
                                                                                                label_content.text = "报名成功,请等待平台通知具体开赛时间"
                                                                                                self.btn_back.setTitle("返回首页", for: .normal)
                                                                                                self.btn_again.setTitle("查看报名", for: .normal)
 
                                                                                case .fail(let string, let code):
                                                                                                self.btn_back.setTitle("返回", for: .normal)
                                                                                                self.btn_again.setTitle("再次支付", for: .normal)
                                                                                                label_content.text = string
                                                                                                if string.contains("玩湃币"){btn_again.setTitle("去充值", for: .normal)}
                                                                                                if string.contains("课时"){btn_again.setTitle("去续课", for: .normal)}
                                                                                case .none:break
                                                                }
                                                case .recharge:
                                                                btn_backHome.isHidden = true
                                                                switch result {
                                                                                case .success:
                                                                                                label_content.text = "充值成功!"
                                                                                                self.btn_back.setTitle("返回首页", for: .normal)
                                                                                                self.btn_again.setTitle("查看详情", for: .normal)
                                                                                                NotificationCenter.default.post(name: UpdateWelfare_Noti, object: nil)
                                                                                                NotificationCenter.default.post(name: StudentRefresh_Nofi, object: nil)
 
                                                                                case .fail(let string, let code):
                                                                                                self.btn_back.setTitle("返回", for: .normal)
                                                                                                self.btn_again.setTitle("再次支付", for: .normal)
                                                                                                label_content.text = string
                                                                                                if string.contains("玩湃币"){btn_again.setTitle("去充值", for: .normal)}
                                                                                                if string.contains("课时"){btn_again.setTitle("去续课", for: .normal)}
 
                                                                                case .none:break
                                                                }
                                                case .member:
                                                                btn_again.isHidden = result == .success
                                                                btn_back.isHidden = result == .success
                                                                btn_backHome.isHidden = result != .success
                                                                collectionView.isHidden =  result != .success
                                                                switch result {
                                                                                case .fail(let str, _):
                                                                                                label_content.text = str
                                                                                case .success:
                                                                                                label_content.text = "支付成功,恭喜您成为玩湃会员!"
                                                                                                NotificationCenter.default.post(name: UpdateWelfare_Noti, object: nil)
                                                                                                NotificationCenter.default.post(name: StudentRefresh_Nofi, object: nil)
                                                                                case .none:break
                                                                }
//                                                                Services.queryMemberCoupon(menthod: 2).subscribe(onNext: {[weak self] data in
//                                                                                if let models = data.data{
//                                                                                                self?.models = models
//                                                                                                if models.count > 0{
//                                                                                                                self?.label_content.text = "支付成功,恭喜您成为玩湃会员!并获得优惠券!"
//                                                                                                }
//                                                                                                self?.collectionView.reloadData()
//                                                                                }
//                                                                }) { error in
//
//                                                                }.disposed(by: disposeBag)
 
                                                case .courseApply:
                                                                //课时购买
                                                                btn_backHome.isHidden = true
                                                                if let id = courseConfigId{
                                                                                Services.paymentCourseCouponList(id: id).subscribe(onNext: {[weak self] data in
                                                                                                if let models = data.data{
                                                                                                                self?.models = models
                                                                                                                self?.collectionView.reloadData()
                                                                                                }
                                                                                }) { error in
 
                                                                                }.disposed(by: disposeBag)
                                                                }
                                                                switch result {
                                                                                case .fail(let str,let code):
                                                                                                btn_again.setTitle("再次支付", for: .normal)
                                                                                                btn_back.setTitle("返回", for: .normal)
                                                                                                label_content.text = str
                                                                                                if str.contains("玩湃币"){btn_again.setTitle("去充值", for: .normal)}
                                                                                case .success:
                                                                                                NotificationCenter.default.post(name: UpdateWelfare_Noti, object: nil)
                                                                                                NotificationCenter.default.post(name: StudentRefresh_Nofi, object: nil)
                                                                                                btn_again.setTitle("立即预约", for: .normal)
                                                                                                btn_back.setTitle("返回首页", for: .normal)
                                                                                                label_content.text = "报名成功,请及时预约运动营上课!"
                                                                                                if isExtend{
                                                                                                                btn_back.isHidden = true
                                                                                                                btn_again.setTitle("返回", for: .normal)
                                                                                                                label_content.text = "续课成功!"
                                                                                                }
                                                                                case .none:break
                                                                }
 
                                                case .courseSUPApply:
                                                                //课时购买
                                                                btn_backHome.isHidden = true
                                                                switch result {
                                                                                case .fail(let str,let code):
                                                                                                btn_again.setTitle("再次支付", for: .normal)
                                                                                                btn_back.setTitle("返回", for: .normal)
                                                                                                label_content.text = str
                                                                                                if str.contains("玩湃币"){btn_again.setTitle("去充值", for: .normal)}
                                                                                                if str.contains("课时"){btn_again.setTitle("去续课", for: .normal)}
                                                                                case .success:
                                                                                                NotificationCenter.default.post(name: UpdateWelfare_Noti, object: nil)
                                                                                                NotificationCenter.default.post(name: StudentRefresh_Nofi, object: nil)
                                                                                                btn_again.setTitle("立即预约", for: .normal)
                                                                                                btn_back.setTitle("返回首页", for: .normal)
                                                                                                label_content.text = "报名成功,请及时预约运动营上课!"
                                                                                case .none:break
                                                                }
 
                                                case .activityApply:
                                                                btn_backHome.isHidden = true
                                                                collectionView.isHidden =  true
                                                                switch result {
                                                                                case .fail(let str, let code):
                                                                                                btn_back.setTitle("返回", for: .normal)
                                                                                                label_content.text = str
                                                                                                if str.contains("玩湃币"){btn_again.setTitle("去充值", for: .normal)}
                                                                                                if str.contains("课时"){btn_again.setTitle("去续课", for: .normal)}
                                                                                case .success:
                                                                                                NotificationCenter.default.post(name: UpdateWelfare_Noti, object: nil)
                                                                                                NotificationCenter.default.post(name: StudentRefresh_Nofi, object: nil)
                                                                                                btn_again.setTitle("查看报名", for: .normal)
                                                                                                btn_back.setTitle("返回首页", for: .normal)
                                                                                                label_content.text = "报名成功,请注意活动开始时间!"
                                                                                case .none:break
                                                                }
 
                                                case .yard:
                                                                btn_backHome.isHidden = true
                                                                collectionView.isHidden =  true
                                                                switch result {
                                                                                case .fail(let str,let code):
                                                                                                label_content.text = str
                                                                                                btn_again.setTitle("再次支付", for: .normal)
                                                                                                btn_back.setTitle("返回", for: .normal)
                                                                                                if str.contains("玩湃币"){btn_again.setTitle("去充值", for: .normal)}
                                                                                                if str.contains("课时"){btn_again.setTitle("去续课", for: .normal)}
                                                                                case .success:
                                                                                                NotificationCenter.default.post(name: UpdateWelfare_Noti, object: nil)
                                                                                                NotificationCenter.default.post(name: StudentRefresh_Nofi, object: nil)
                                                                                                btn_again.setTitle("查看预约", for: .normal)
                                                                                                btn_back.setTitle("返回首页", for: .normal)
                                                                                                label_content.text = "预约成功,请注意预约开始时间!"
                                                                                case .none:break
                                                                }
 
                                                case .games:
                                                                btn_backHome.isHidden = true
                                                                collectionView.isHidden =  true
                                                                switch result {
                                                                                case .fail(let str,let code):
                                                                                                btn_again.setTitle("再次支付", for: .normal)
                                                                                                btn_back.setTitle("返回", for: .normal)
                                                                                                label_content.text = str
                                                                                                if str.contains("玩湃币"){btn_again.setTitle("去充值", for: .normal)}
                                                                                                if str.contains("课时"){btn_again.setTitle("去续课", for: .normal)}
                                                                                case .success:
                                                                                                NotificationCenter.default.post(name: UpdateWelfare_Noti, object: nil)
                                                                                                btn_again.isHidden = true
                                                                                                btn_back.setTitleColor(.white, for: .normal)
                                                                                                btn_back.backgroundColor = Def_ThemeColor
                                                                                                btn_back.setTitle("我的数据", for: .normal)
                                                                                                label_content.text = "支付成功"
                                                                                case .none:break
                                                                }
            case .huimin:
                btn_backHome.isHidden = true
                collectionView.isHidden =  true
                switch result {
                    case .fail(let str,let code):
                        btn_again.setTitle("再次支付", for: .normal)
                        btn_back.setTitle("返回", for: .normal)
                        label_content.text = str
                    case .success:
                        NotificationCenter.default.post(name: UpdateCurrentStore_Noti, object: nil)
                        btn_again.isHidden = false
                        btn_again.setTitle("查看玩湃惠民卡", for: .normal)
                        btn_back.setTitleColor(Def_ThemeColor, for: .normal)
                        btn_back.backgroundColor = .white
                        btn_back.setTitle("返回首页", for: .normal)
                        btn_back.jq_borderColor = Def_ThemeColor
                        btn_back.jq_borderWidth = 1
                        label_content.text = "购买成功"
                    case .none:break
                }
 
                                                case .exchange:
                                                                switch result {
                                                                                case .success:
                                                                                                NotificationCenter.default.post(name: UpdateWelfare_Noti, object: nil)
                                                                                                NotificationCenter.default.post(name: StudentRefresh_Nofi, object: nil)
                                                                                                label_content.text = "兑换成功"
                                                                                                btn_again.setTitle("查看详情", for: .normal)
                                                                                                btn_back.setTitle("返回首页", for: .normal)
                                                                                                btn_backHome.isHidden = true
                                                                                case .fail(let msg, let code):
                                                                                                btn_again.setTitle("再次支付", for: .normal)
                                                                                                btn_back.setTitle("返回", for: .normal)
                                                                                                label_content.text = msg
                                                                                                if msg.contains("玩湃币"){btn_again.setTitle("去充值", for: .normal)}
                                                                                                if msg.contains("课时"){btn_again.setTitle("去续课", for: .normal)}
 
                                                                                case .none:break
                                                                }
                                                case .none:break
                                }
 
 
                                collectionView.delegate = self
                                collectionView.dataSource = self
                                collectionView.contentInset = UIEdgeInsets(top: 0, left: 14, bottom: 0, right: 14)
                                collectionView.register(UINib(nibName: "CouponCCell", bundle: nil), forCellWithReuseIdentifier: "_CouponCCell")
                }
 
                @IBAction func paymentAgainAction(_ sender: UIButton) {
                                let str = sender.titleLabel?.text ?? ""
 
                                switch str{
                                                case "查看排名":
                                                                let vc  = WorldCupVC()
                                                                jumpAndRemoveSelfVC(vc)
            case "查看玩湃惠民卡":
                let vc = MyCardListVC()
                jumpAndRemoveSelfVC(vc)
                                                case "查看预约":
                                                                let vc = YardBookingListVC()
                                                                jumpAndRemoveSelfVC(vc)
                                                case "立即预约":
                                                                navigationController?.qmui_popToRootViewController(animated: true, completion: { () in
                                                                                JQ_currentViewController().tabBarController?.selectedIndex = 1
                                                                })
                                                                NotificationCenter.default.post(name: UpdateCurrentStore_Noti, object: nil)
                                                                NotificationCenter.default.post(name: StudentRefresh_Nofi, object: nil)
                                                case "查看报名":
                                                                if objType == .worldCup{
                                                                                let vc  = WorldCupVC()
                                                                                jumpAndRemoveSelfVC(vc)
                                                                }else{
                                                                                let vc = ActivitySignupListVC()
                                                                                jumpAndRemoveSelfVC(vc)
                                                                }
                                                case "再次支付":
                if objType == .courseApply || objType == .worldCup || objType == .huimin{
                                                                                navigationController?.popViewController(animated: true, {[weak self] in
                                                                                                self?.againClouse?()
                                                                                })
                                                                }
 
                                                                if objType == .recharge || objType == .yard{
                                                                                navigationController?.popViewController()
                                                                }
 
                                                case "去充值":
                                                                let vc = RechargeCenterVC()
                                                                jumpAndRemoveSelfVC(vc)
                                                case "去续课":
                                                                 let vc = SignUpCourseVC()
                                                                jumpAndRemoveSelfVC(vc)
                                                case "返回":
                                                                navigationController?.popViewController(animated: true, {() in
 
                                                                })
 
                                                case "查看详情":
                                                                if objType == .exchange{
                                                                                let vc = WelfareExchangeRecordListVC(pageIndex: 1)
                                                                                jumpAndRemoveSelfVC(vc)
                                                                }
 
                                                                if objType == .recharge{
                                                                                for (_,vc) in navigationController!.viewControllers.enumerated(){
                                                                                                if vc is RechargeRecordVC{
                                                                                                                navigationController?.popToViewController(vc, animated: true)
                                                                                                                break
                                                                                                }
                                                                                }
                                                                }
                                                default:break
                                }
                }
 
                private func jumpAndRemoveSelfVC(_ vc:UIViewController){
                                JQ_currentViewController().navigationController?.pushViewController(vc, completion: {
                                                for (index,subVC) in (JQ_currentViewController().navigationController?.viewControllers ?? []).enumerated(){
                                                                if subVC is PaymentResultVC{
                                                                                JQ_currentViewController().navigationController?.viewControllers.remove(at: index)
                                                                }
                                                }
                                })
                }
 
 
                @IBAction func backAction(_ sender: UIButton) {
 
                                if sender.titleLabel?.text == "返回首页"{
 
            if objType == .huimin{
                for v in navigationController?.viewControllers ?? []{
                    if v is CardCenterVC{
                        navigationController?.popToViewController(v, animated: true);break
                    }
                }
                return
            }
 
                                                navigationController?.qmui_popToRootViewController(animated: true, completion: {
                                                                JQ_currentViewController().tabBarController?.selectedIndex = 0
                                                })
                                }
 
                                if sender.titleLabel?.text == "返回"{
                                                navigationController?.popViewController(animated: true, {() in
 
                                                })
                                }
 
                                if sender.titleLabel?.text == "我的数据"{
                                                let vc = GamesDataSourceVC()
                                                jumpAndRemoveSelfVC(vc)
                                }
                }
 
                override var preferredStatusBarStyle: UIStatusBarStyle{
                                return .lightContent
                }
}
 
extension PaymentResultVC:UICollectionViewDelegate{
                func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
                                dismiss(animated: true)
                                handleVC?.navigationController?.popToRootViewController(animated: false)
                                let vc = WelfareCouponsListVC()
                                vc.hidesBottomBarWhenPushed = true
                                JQ_currentViewController().jq_push(vc: vc)
                }
}
 
extension PaymentResultVC:UICollectionViewDataSource{
                func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
                                return models.count
                }
 
                func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
                                let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "_CouponCCell", for: indexPath) as! CouponCCell
                                let model = models[indexPath.row]
 
                                if let m = model as? CourseCouponModel{
                                                cell.courseCouponModel = m
                                }
 
                                if let m = model as? CouponInfo_1_Model{
                                                cell.couponInfoModel = m
                                }
 
                                cell.showDetailClouse = {[weak self] () in
                                                self?.dismiss(animated:true){ [weak self] in
                                                                let vc = WelfareCouponsListVC()
                                                                self?.handleVC?.navigationController?.pushViewController(vc)
                                                }
                                }
                                return cell
                }
 
}
 
extension PaymentResultVC:UICollectionViewDelegateFlowLayout{
                func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
                                return 0
                }
 
                func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
                                return 0
                }
 
                func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
                                return CGSize(width: JQ_ScreenW, height: 120)
                }
}