Commit e89847cf authored by Steven杜宇's avatar Steven杜宇

// 原则批

parent f7e0ff82
...@@ -427,8 +427,11 @@ class YHPrincipleUploadStatusCell: UITableViewCell { ...@@ -427,8 +427,11 @@ class YHPrincipleUploadStatusCell: UITableViewCell {
return "" return ""
} }
if type == YHPrincipleAgreementType.other.rawValue { if type == YHPrincipleAgreementType.other.rawValue {
let remark = self.itemModel?.remark ?? "" var text = ""
return "新公司在职证明(在申请期间更换了工作时必传)\n"+remark if let remark = self.itemModel?.remark, !remark.isEmpty {
text = "\n"+remark
}
return "新公司在职证明(在申请期间更换了工作时必传)"+text
} }
return "" return ""
} }
......
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