r
2025-09-19 8c309ff419690cc77c9b178096878e18d4849fc2
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
//
//  YardBookingSubListVC.swift
//  WanPai
//
//  Created by 无故事王国 on 2023/6/20.
//
 
import UIKit
import RxRelay
import RxSwift
 
let RefreshBooking_Noti = Notification.Name.init("RefreshBooking_Noti")
 
class YardBookingViewModel:RefreshModel<YardBookingModel>{
 
                let type = BehaviorRelay<YardBookingType?>(value:nil)
                override func api() -> (Observable<BaseResponse<[YardBookingModel]>>)? {
                                return Services.queryMySite(page: page, status: type.value)
                }
}
 
class YardBookingSubListVC: BaseVC {
 
                private var viewModel = YardBookingViewModel()
 
                lazy private var tableView:BaseTableView = {
                                let table = BaseTableView(frame: .zero, style: .plain)
                                table.separatorStyle = .none
                                table.delegate = self
                                table.dataSource = self
                                table.register(UINib(nibName: "YardBookingTCell", bundle: nil), forCellReuseIdentifier: "_YardBookingTCell")
                                return table
                }()
 
                required init(type:YardBookingType?) {
                                super.init(nibName: nil, bundle: nil)
                                self.viewModel.type.accept(type)
                }
 
                required init?(coder: NSCoder) {
                                fatalError("init(coder:) has not been implemented")
                }
 
                override func viewDidLoad() {
                                super.viewDidLoad()
 
 
                                viewModel.configure(tableView)
                                viewModel.beginRefresh()
                }
 
                override func setUI() {
                                view.addSubview(tableView)
                                tableView.snp.makeConstraints { make in
                                                make.edges.equalToSuperview()
                                }
 
                                //        tableView.jq_setEmptyView()
                }
 
                override func setRx() {
                                NotificationCenter.default.rx.notification(RefreshBooking_Noti).take(until: self.rx.deallocated).subscribe(onNext: {[weak self] noti in
                                                guard let weakSelf = self else { return }
                                                if let indexPath = noti.object as? IndexPath{
                                                                weakSelf.tableView.beginUpdates()
                                                                if weakSelf.viewModel.type.value == nil{
                                                                                weakSelf.viewModel.dataSource.value[indexPath.row].status = .cancel
                                                                                weakSelf.tableView.reloadRows(at: [indexPath], with: .automatic)
                                                                }else{
                                                                                var tempValue = weakSelf.viewModel.dataSource.value
                                                                                tempValue.remove(at: indexPath.row)
                                                                                weakSelf.viewModel.dataSource.accept(tempValue)
                                                                                weakSelf.tableView.deleteRows(at: [indexPath], with: .automatic)
                                                                }
                                                                weakSelf.tableView.endUpdates()
                                                                weakSelf.tableView.reloadData()
 
                                                }else{
                                                                weakSelf.viewModel.beginRefresh()
                                                }
                                }).disposed(by: disposeBag)
                }
}
 
extension YardBookingSubListVC:UITableViewDelegate{
                func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
                                //        let model = viewModel.dataSource.value
 
                }
 
}
 
extension YardBookingSubListVC:UITableViewDataSource{
                func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
                                return viewModel.dataSource.value.count
                }
 
                func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
                                let model = viewModel.dataSource.value[indexPath.row]
                                let cell = tableView.dequeueReusableCell(withIdentifier: "_YardBookingTCell") as! YardBookingTCell
                                cell.indexPath = indexPath
                                cell.yardBookingModel = model
                                return cell
                }
}