Commit d1b7b997 authored by David黄金龙's avatar David黄金龙

添加 入口

parent 2650cfe3
...@@ -314,9 +314,39 @@ extension YHInformationPerfectListVC : UITableViewDelegate,UITableViewDataSource ...@@ -314,9 +314,39 @@ extension YHInformationPerfectListVC : UITableViewDelegate,UITableViewDataSource
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.deselectRow(at: indexPath, animated: true) tableView.deselectRow(at: indexPath, animated: true)
printLog("点击了 \(indexPath.section)section --- \(indexPath.row)row") printLog("点击了 \(indexPath.section)section --- \(indexPath.row)row")
let model = serviceCenterMainReqVM.arrInfoFillStep[indexPath.row] let model = serviceCenterMainReqVM.arrInfoFillStep[indexPath.row]
let vc = YHBasicInfoFillViewController()
vc.orderId = orderId if indexPath.row == 0 {
navigationController?.pushViewController(vc) //主申请人信息
let vc = YHMainApplicantInformationViewController()
navigationController?.pushViewController(vc)
} else if indexPath.row == 1 {
//家庭程序信息
let vc = YHFamilyMemberFormVC(orderId: orderId ?? 0)
navigationController?.pushViewController(vc)
} else if indexPath.row == 2 {
//基本信息
let vc = YHBasicInfoFillViewController()
vc.orderId = orderId
navigationController?.pushViewController(vc)
} else if indexPath.row == 3 {
//学历/专业资格
} else if indexPath.row == 4 {
//工作经历
} else if indexPath.row == 5 {
//其他信息
} else {
}
} }
} }
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