无故事王国
2023-10-18 e86e19e5e5909f46e09adec1df430e0214a81590
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
//
//  PaymentResultVC.swift
//  WanPai
//
//  Created by 杨锴 on 2023/6/8.
//
 
import UIKit
import JQTools
 
class PaymentResultVC: BaseVC {
    
    enum PaymentResult:Equatable{
        case success
        case fail(String)
    }
    enum PaymentObjType{
        case member //会员
        case courseApply //课程报名
        case activityApply //活动报名
        case yard //场地预约
        case games //邮箱
    }
    
    
    @IBOutlet weak var label_title: UILabel!
    @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 = [CourseCouponModel]()
 
    required init(result:PaymentResult,objType:PaymentObjType,handleVC:UIViewController? = nil,courseConfigId:Int? = nil) {
        super.init(nibName: nil, bundle: nil)
        self.result = result
        self.objType = objType
        self.handleVC = handleVC
        self.courseConfigId = courseConfigId
    }
    
    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    override func viewDidLoad() {
        super.viewDidLoad()
        title = "成为会员"
        
        
        switch objType{
        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:
                img_paymentState.image = UIImage(named: "icon_fail")
                label_content.text = "支付失败,这是失败原因!"
            case .success:
                img_paymentState.image = UIImage(named: "icon_success")
                label_content.text = "支付成功,恭喜您成为玩湃会员!并获得优惠券!"
            case .none:break
            }
        case .courseApply:
                //课时购买
            btn_backHome.isHidden = true
                if let id = courseConfigId{
                    Services.paymentCourseCouponList(id: id).subscribe(onNext: { data in
                        if let models = data.data{
                            self.models = models
                            self.collectionView.reloadData()
                        }
                    }) { error in
 
                    }.disposed(by: disposeBag)
                }
            switch result {
            case .fail(let str):
                label_title.text = "支付失败"
                btn_again.setTitle("再次支付", for: .normal)
                btn_back.setTitle("返回", for: .normal)
                img_paymentState.image = UIImage(named: "icon_fail")
                label_content.text = str
            case .success:
                label_title.text = "支付成功"
                btn_again.setTitle("立即预约", for: .normal)
                btn_back.setTitle("返回首页", for: .normal)
                img_paymentState.image = UIImage(named: "icon_success")
                label_content.text = "报名成功,请及时预约课程上课!"
            case .none:break
            }
            
        case .activityApply:
            btn_backHome.isHidden = true
            collectionView.isHidden =  true
            switch result {
            case .fail:
                btn_again.setTitle("再次支付", for: .normal)
                btn_back.setTitle("返回", for: .normal)
                img_paymentState.image = UIImage(named: "icon_fail")
                label_content.text = "报名失败,这是失败原因!"
            case .success:
                btn_again.setTitle("查看报名", for: .normal)
                btn_back.setTitle("返回首页", for: .normal)
                img_paymentState.image = UIImage(named: "icon_success")
                label_content.text = "报名成功,请注意赛事开始时间!"
            case .none:break
            }
 
            case .yard:
                btn_backHome.isHidden = true
                collectionView.isHidden =  true
                switch result {
                case .fail(let str):
                    btn_again.setTitle("再次支付", for: .normal)
                    btn_back.setTitle("返回", for: .normal)
                    img_paymentState.image = UIImage(named: "icon_fail")
                    label_content.text = str
                case .success:
                    btn_again.setTitle("查看预约", for: .normal)
                    btn_back.setTitle("返回首页", for: .normal)
                    img_paymentState.image = UIImage(named: "icon_success")
                    label_content.text = "报名成功,请注意预约开始时间!"
                case .none:break
                }
 
            case .games:
                btn_backHome.isHidden = true
                collectionView.isHidden =  true
                switch result {
                    case .fail(let str):
                        label_title.text = "支付失败"
                        btn_again.setTitle("再次支付", for: .normal)
                        btn_back.setTitle("返回", for: .normal)
                        img_paymentState.image = UIImage(named: "icon_fail")
                        label_content.text = str
                    case .success:
                        label_title.text = "支付成功"
                        btn_again.isHidden = true
                        btn_back.setTitleColor(.white, for: .normal)
                        btn_back.backgroundColor = Def_ThemeColor
                        btn_back.setTitle("我的数据", for: .normal)
                        img_paymentState.image = UIImage(named: "icon_success")
                        label_content.text = "支付成功"
                    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 "查看预约":
                dismiss(animated:true){ [weak self] in
                    let vc = YardBookingListVC()
                    self?.handleVC?.navigationController?.pushViewController(vc)
                }
            case "立即预约":
                handleVC?.navigationController?.tabBarController?.selectedIndex = 1
                handleVC?.navigationController?.popToRootViewController(animated: true)
                dismiss(animated:true)
 
            case "查看报名":
                dismiss(animated:true){ [weak self] in
                    let vc = ActivitySignupListVC()
                    self?.handleVC?.navigationController?.pushViewController(vc)
                }
            default:break
        }
    }
    
    
    @IBAction func backAction(_ sender: UIButton) {
        if let handleVC{
            handleVC.navigationController?.popToRootViewController(animated: true)
        }
        dismiss(animated: true) {
            JQ_currentViewController().jq_push(vc: GamesDataSourceVC())
        }
    }
}
 
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]
        cell.courseCouponModel = model
        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)
    }
}