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

Merge commit '09b94ff7' into xiezhaolin

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