Commit 63661cc2 authored by Steven杜宇's avatar Steven杜宇

// 高才学历

parent bb0ef4f3
...@@ -195,7 +195,13 @@ extension YHGCEducationInfoListVC : UITableViewDelegate, UITableViewDataSource { ...@@ -195,7 +195,13 @@ extension YHGCEducationInfoListVC : UITableViewDelegate, UITableViewDataSource {
let cell = tableView.dequeueReusableCell(withIdentifier: YHFormItemTitleCell.cellReuseIdentifier, for: indexPath) as! YHFormItemTitleCell let cell = tableView.dequeueReusableCell(withIdentifier: YHFormItemTitleCell.cellReuseIdentifier, for: indexPath) as! YHFormItemTitleCell
let isNeedWrap = (formItem.type == .mainApplicantProfessionalQualification) let isNeedWrap = (formItem.type == .mainApplicantProfessionalQualification)
cell.setTitleAndSubTitle(title:formItem.getTitle(), subTitle:formItem.getSubTitle(), isNeedWrap:isNeedWrap) var title = formItem.getTitle()
var subTitle = formItem.getSubTitle()
if formItem.type == .mainApplicantEducation {
title = "主申请人学士学位"
subTitle = "(仅申报百强名校学士学位)"
}
cell.setTitleAndSubTitle(title:title, subTitle:subTitle, isNeedWrap:isNeedWrap)
// 决定右边按钮显示样式 // 决定右边按钮显示样式
cell.showEditType(type: .none) cell.showEditType(type: .none)
......
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