Commit f557e964 authored by pete谢兆麟's avatar pete谢兆麟

续签补件bug修复

parent 2718e085
...@@ -301,7 +301,12 @@ class YHResignUploadDocItemView: UIView { ...@@ -301,7 +301,12 @@ class YHResignUploadDocItemView: UIView {
@objc func centerClick() { @objc func centerClick() {
if let block = clickBlock { if let block = clickBlock {
block(self.dataSource ?? YHResignUploadDocModel()) if let model = self.dataSource {
block(model)
}
if let model = self.docDataSource {
block(model)
}
} }
} }
......
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