Commit 7c040a85 authored by Steven杜宇's avatar Steven杜宇

// fix

parent 480c5eac
...@@ -22,7 +22,7 @@ class YHResignCertificateDetailViewController: YHBaseViewController { ...@@ -22,7 +22,7 @@ class YHResignCertificateDetailViewController: YHBaseViewController {
if dataModel.status == ResignCertificateStatus.NotUpload.rawValue { if dataModel.status == ResignCertificateStatus.NotUpload.rawValue {
self.statusLabel.backgroundColor = UIColor.brandMainColor(alpha: 0.08) self.statusLabel.backgroundColor = UIColor.brandMainColor(alpha: 0.08)
self.statusLabel.text = "上传" self.statusLabel.text = "上传"
self.statusLabel.textColor = UIColor.brandMainColor self.statusLabel.textColor = UIColor.brandMainColor
} else if dataModel.status == ResignCertificateStatus.Review.rawValue { } else if dataModel.status == ResignCertificateStatus.Review.rawValue {
......
...@@ -126,9 +126,6 @@ class YHResignCertificateEvisaTableViewCell: UITableViewCell { ...@@ -126,9 +126,6 @@ class YHResignCertificateEvisaTableViewCell: UITableViewCell {
let view = YHWorkFileItemView() let view = YHWorkFileItemView()
view.block = {[weak self] model, type in view.block = {[weak self] model, type in
guard let self = self else { return } guard let self = self else { return }
if self.isDisablEdit {
return
}
if let block = self.experienceListBlock { if let block = self.experienceListBlock {
block(model, type) block(model, type)
} }
...@@ -191,7 +188,7 @@ class YHResignCertificateEvisaTableViewCell: UITableViewCell { ...@@ -191,7 +188,7 @@ class YHResignCertificateEvisaTableViewCell: UITableViewCell {
if dataModel.status == ResignCertificateStatus.NotUpload.rawValue { if dataModel.status == ResignCertificateStatus.NotUpload.rawValue {
self.statusLabel.backgroundColor = UIColor.brandMainColor(alpha: 0.08) self.statusLabel.backgroundColor = UIColor.brandMainColor(alpha: 0.08)
self.statusLabel.text = "上传" self.statusLabel.text = "上传"
self.statusLabel.textColor = UIColor.brandMainColor self.statusLabel.textColor = UIColor.brandMainColor
} else if dataModel.status == ResignCertificateStatus.Review.rawValue { } else if dataModel.status == ResignCertificateStatus.Review.rawValue {
......
...@@ -73,7 +73,7 @@ class YHResignCertificateHKTableViewCell: UITableViewCell { ...@@ -73,7 +73,7 @@ class YHResignCertificateHKTableViewCell: UITableViewCell {
if dataModel.status == ResignCertificateStatus.NotUpload.rawValue { if dataModel.status == ResignCertificateStatus.NotUpload.rawValue {
statusButton.backgroundColor = UIColor.brandMainColor(alpha: 0.08) statusButton.backgroundColor = UIColor.brandMainColor(alpha: 0.08)
statusButton.setTitle("上传", for: .normal) statusButton.setTitle("上传", for: .normal)
statusButton.setTitleColor(UIColor.brandMainColor, for: .normal) statusButton.setTitleColor(UIColor.brandMainColor, for: .normal)
} else if dataModel.status == ResignCertificateStatus.Review.rawValue { } else if dataModel.status == ResignCertificateStatus.Review.rawValue {
......
...@@ -60,7 +60,7 @@ class YHResignCertificatePassportTableViewCell: UITableViewCell { ...@@ -60,7 +60,7 @@ class YHResignCertificatePassportTableViewCell: UITableViewCell {
if dataModel.status == ResignCertificateStatus.NotUpload.rawValue { if dataModel.status == ResignCertificateStatus.NotUpload.rawValue {
statusButton.backgroundColor = UIColor.brandMainColor(alpha: 0.08) statusButton.backgroundColor = UIColor.brandMainColor(alpha: 0.08)
statusButton.setTitle("上传", for: .normal) statusButton.setTitle("上传", for: .normal)
statusButton.setTitleColor(UIColor.brandMainColor, for: .normal) statusButton.setTitleColor(UIColor.brandMainColor, for: .normal)
} else if dataModel.status == ResignCertificateStatus.Review.rawValue { } else if dataModel.status == ResignCertificateStatus.Review.rawValue {
......
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