Commit 550460b4 authored by Steven杜宇's avatar Steven杜宇

Merge branch 'qmas-1130' of http://gitlab.galaxy-immi.com/mobile-group/galaxy-iOS into qmas-1130

parents 2ab3ecdc f3fe384d
...@@ -388,6 +388,9 @@ extension YHIncomeRecordWorkExperienceViewController: UITableViewDelegate, UITab ...@@ -388,6 +388,9 @@ extension YHIncomeRecordWorkExperienceViewController: UITableViewDelegate, UITab
var text = textField.text ?? "" var text = textField.text ?? ""
text = text.replacingOccurrences(of: "¥", with: "") text = text.replacingOccurrences(of: "¥", with: "")
text = text.replacingOccurrences(of: ",", with: "") text = text.replacingOccurrences(of: ",", with: "")
if text == "0" {
text = ""
}
textField.text = text textField.text = text
} }
cell.didEndEditing = { [weak self] textField in cell.didEndEditing = { [weak self] textField in
......
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