younger_times
2023-06-09 66e92e00d206dc19a4066b6f3f58f30e5c532646
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
//
//  CourseDetailVC.swift
//  WanPai
//
//  Created by 杨锴 on 2023/6/9.
//
 
import UIKit
import QMUIKit
 
class CourseDetailVC: BaseVC {
 
    @IBOutlet weak var btn_local: QMUIButton!
    override func viewDidLoad() {
        super.viewDidLoad()
        title = "课程详情"
    }
    
    override func setUI() {
        btn_local.imagePosition = .left
        btn_local.spacingBetweenImageAndTitle = 5
    }
 
    @IBAction func applyAction(_ sender: UIButton) {
         let vc = CourseDetailApplyVC()
        push(vc: vc)
    }
    
    
    @IBAction func localAction(_ sender: QMUIButton) {
        
    }
    
}