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

Merge commit '09b94ff7' into xiezhaolin

parents 4b7225bd 09b94ff7
...@@ -2667,7 +2667,7 @@ ...@@ -2667,7 +2667,7 @@
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual; CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 4; CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_TEAM = ""; DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = RXHYW88XR7; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = RXHYW88XR7;
ENABLE_USER_SCRIPT_SANDBOXING = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO;
...@@ -2709,7 +2709,7 @@ ...@@ -2709,7 +2709,7 @@
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual; CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 4; CURRENT_PROJECT_VERSION = 5;
DEVELOPMENT_TEAM = ""; DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = RXHYW88XR7; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = RXHYW88XR7;
ENABLE_USER_SCRIPT_SANDBOXING = NO; ENABLE_USER_SCRIPT_SANDBOXING = NO;
......
...@@ -48,7 +48,6 @@ class YHServiceCenterSecondViewController: YHBaseViewController { ...@@ -48,7 +48,6 @@ class YHServiceCenterSecondViewController: YHBaseViewController {
override func viewWillAppear(_ animated: Bool) { override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated) super.viewWillAppear(animated)
loadData2()
loadData() loadData()
} }
} }
...@@ -235,6 +234,11 @@ private extension YHServiceCenterSecondViewController { ...@@ -235,6 +234,11 @@ private extension YHServiceCenterSecondViewController {
serviceCenterMainReqVM.submitSweetNotifyOp(params: params as [String : Any]) { success, error in serviceCenterMainReqVM.submitSweetNotifyOp(params: params as [String : Any]) { success, error in
if success == true { if success == true {
YHInformationFillTipsAlertView.hideCheckView() YHInformationFillTipsAlertView.hideCheckView()
self.loadData2()
let vc = YHInformationPerfectListVC()
vc.orderId = self.orderId
self.navigationController?.pushViewController(vc)
} else { } else {
YHHUD.flash(message: error?.errorMsg ?? "发生错误,请重试") YHHUD.flash(message: error?.errorMsg ?? "发生错误,请重试")
} }
......
...@@ -119,7 +119,5 @@ private extension YHCertificateEntryHeadView { ...@@ -119,7 +119,5 @@ private extension YHCertificateEntryHeadView {
let e: ASAttributedString = .init("件", .font(UIFont.PFSC_R(ofSize: 13)),.foreground(UIColor.mainTextColor)) let e: ASAttributedString = .init("件", .font(UIFont.PFSC_R(ofSize: 13)),.foreground(UIColor.mainTextColor))
statiticLable.attributed.text = a + aa + b + bb + c + cc + d + dd + e statiticLable.attributed.text = a + aa + b + bb + c + cc + d + dd + e
} }
} }
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
</dict> </dict>
<dict> <dict>
<key>scoreValue</key> <key>scoreValue</key>
<string>15</string> <string>0</string>
<key>scoreName</key> <key>scoreName</key>
<string>450+</string> <string>450+</string>
<key>isSelected</key> <key>isSelected</key>
......
...@@ -104,6 +104,5 @@ extension YHBasicInfoFillCell { ...@@ -104,6 +104,5 @@ extension YHBasicInfoFillCell {
} }
tmpView = view tmpView = view
} }
} }
} }
...@@ -245,7 +245,9 @@ extension YHEducationDetailVC : UITableViewDelegate, UITableViewDataSource { ...@@ -245,7 +245,9 @@ extension YHEducationDetailVC : UITableViewDelegate, UITableViewDataSource {
} else if cellType == .selectSheet { } else if cellType == .selectSheet {
let cell = tableView.dequeueReusableCell(withIdentifier: YHFormItemSelectSheetCell.cellReuseIdentifier, for: indexPath) as! YHFormItemSelectSheetCell let cell = tableView.dequeueReusableCell(withIdentifier: YHFormItemSelectSheetCell.cellReuseIdentifier, for: indexPath) as! YHFormItemSelectSheetCell
cell.isShowTipsButton = (detailItem.type == .degreeType) cell.isShowTipsButton = (detailItem.type == .degreeType)
cell.tipsBtnClickBlock = nil cell.tipsBtnClickBlock = {
YHWholeScreenTipsView.show(type: .degreeType, targetView: cell.tipsButton)
}
cell.placeHolder = detailItem.placeHolder cell.placeHolder = detailItem.placeHolder
cell.isMust = detailItem.isNeed cell.isMust = detailItem.isNeed
cell.title = detailItem.getTitle() cell.title = detailItem.getTitle()
......
...@@ -89,7 +89,7 @@ class YHFormItemSelectSheetCell: UITableViewCell { ...@@ -89,7 +89,7 @@ class YHFormItemSelectSheetCell: UITableViewCell {
return label return label
}() }()
private lazy var tipsButton: UIButton = { lazy var tipsButton: UIButton = {
let btn = UIButton() let btn = UIButton()
btn.setImage(UIImage(named: "form_btn_tips"), for: .normal) btn.setImage(UIImage(named: "form_btn_tips"), for: .normal)
btn.addTarget(self, action: #selector(didTipsButtonClicked), for: .touchUpInside) btn.addTarget(self, action: #selector(didTipsButtonClicked), for: .touchUpInside)
...@@ -175,7 +175,9 @@ class YHFormItemSelectSheetCell: UITableViewCell { ...@@ -175,7 +175,9 @@ class YHFormItemSelectSheetCell: UITableViewCell {
} }
@objc func didTipsButtonClicked() { @objc func didTipsButtonClicked() {
YHWholeScreenTipsView.show(type: .residenceInfo, targetView: tipsButton) if let tipsBtnClickBlock = tipsBtnClickBlock {
tipsBtnClickBlock()
}
} }
func setTips(_ tips:String?, isShow:Bool) { func setTips(_ tips:String?, isShow:Bool) {
......
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