fix
无故事王国
2024-03-04 54c6ef0be42d9f2e49a344fd69f231cb6df43797
WanPai/Root/Search/VC/SearchVC.swift
@@ -22,6 +22,7 @@
            private var models = [StartClouseExploreModel]()
            private var items = ["我的二维码","我的预约","社区世界杯","已报名活动","我的运动营","人员管理","我的券包","兑换记录","消费记录","积分明细","我的玩湃币","裁判入口"]
            private var itemsImg = ["me_code","me_yard","me_wordCup","me_activity","me_camp","me_judge","me_coupons","me_withdrawRec","me_consume","me_coin","me_payCoin","me_judge"]
            override func viewDidDisappear(_ animated: Bool) {
                        super.viewDidDisappear(animated)
@@ -145,7 +146,8 @@
                                                case "我的运动营":
                                                self.tabBarController?.selectedIndex = 1
                                                case "人员管理":
                                                break
                                                let vc = StudentsManagerListVC()
                                                push(vc: vc)
                                                case "我的券包":
                                                let vc = WelfareCouponsListVC()
                                                push(vc: vc)
@@ -162,7 +164,8 @@
                                                let vc = RechargeRecordVC(coin: benefitHomeModel?.wpCoin ?? 0,subtype: .coin)
                                                push(vc: vc)
                                                case "裁判入口":
                                                break
                                                let vc = JudgeListVC()
                                                push(vc: vc)
                                                default:
                                                            break
                                    }
@@ -191,6 +194,7 @@
                        if collectionView == func_collectionView{
                                    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "_FindItemCCell", for: indexPath) as! FindItemCCell
                                    cell.label_title.text = items[indexPath.row]
                                    cell.img_avar.image = UIImage(named: itemsImg[indexPath.row])
                                    return cell
                        }