WanPai/Root/Search/VC/JudgeListVC.swift
@@ -91,6 +91,11 @@ func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let model = viewModel.dataSource.value[indexPath.row] let cell = tableView.dequeueReusableCell(withIdentifier: "_JudgeTCell") as! JudgeTCell cell.btn_now.rx.tap.subscribe(onNext: { [weak self] in let vc = ProgressCompetitionVC(model: cell.cellModel ?? WorldCupJudgeModel()) self?.push(vc: vc) }) .disposed(by: disposeBag) cell.setModel(model) return cell }