1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| //
| // CourseEXPVC.swift
| // WanPai
| //
| // Created by 无故事王国 on 2023/9/18.
| //
|
| import UIKit
|
| class CourseEXPVC: BaseVC {
|
| override func viewDidLoad() {
| super.viewDidLoad()
|
| // Do any additional setup after loading the view.
| }
|
|
| @IBAction func paymentAction(_ sender: UIButton) {
| // PaymentCourseView.show()
|
| }
| }
|
|