Commit 054d5b98 authored by Steven杜宇's avatar Steven杜宇

// 我的方案入口

parent 47c8d594
......@@ -264,7 +264,13 @@ extension YHInformationPerfectListVC {
//我的方案
@objc func goMySchemeVC() {
if productType == 0 { // 优才
YHMyNewSchemeViewController.shared.goToSchemePage()
} else if productType == 1 || productType == 2 || productType == 3 { // 高才ABC
let vc = YHGCMineSchemeViewController()
navigationController?.pushViewController(vc)
}
}
@objc func goInfoListVC( ) {
......
......@@ -283,6 +283,8 @@ class YHServiceOrderListViewController: YHBaseViewController {
} else if type == 202 {
//高才我的方案
let vc = YHGCMineSchemeViewController()
UIViewController.current?.navigationController?.pushViewController(vc)
} else if type == 203 {
//高才我的证件
......
......@@ -16,7 +16,7 @@ class YHAcademicPreviewModel: SmartCodable {
var edu_count: Int = 0
var qla_count: Int = 0
var is_married: Int = 0
var is_name_same: Bool = false
var edu_list : [eduListModel]?
var qla_list : [qlaListModel]?
......@@ -36,9 +36,13 @@ class eduListModel: SmartCodable {
var professional: String = ""
var background: String = ""
var degree_type: String = ""
var cert_confirm: Int = 0
var school_address: schoolAddressModel?
var major_other: String = ""
var has_bachelor_degree: Int = 0
required init() {
}
}
......
......@@ -193,18 +193,6 @@ func configTabBarController() -> YHTabBarViewController {
}
return false
}
tabBarController.didHijackHandler = {
tabBarController, viewController, index in
if index == ai_tabIndex {
if !YHLoginManager.shared.isLogin() {
YHOneKeyLoginManager.shared.oneKeyLogin()
return
}
let vc = YHAITabViewController()
UIViewController.current?.navigationController?.pushViewController(vc)
}
}
v0.tabBarItem = ESTabBarItem.init(YHHomeLottieAnimateContentView(),title: "首页", image: UIImage(named: "home"), selectedImage: UIImage(named: "home_1"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment