Commit bcdcbf30 authored by David黄金龙's avatar David黄金龙

修改一处点击bug

parent 1a02861b
......@@ -177,7 +177,7 @@ extension YHHomeHoldViewPageViewController {
//跳转 正式批结果页面
//正式批已获批~
let vc = YHOfficialApprovalResultVC()
vc.showGuildViewFlag = true
vc.isFromHomeAlertViewFlag = true
self.navigationController?.pushViewController(vc)
}
}
......
......@@ -146,8 +146,8 @@ class YHOfficialApprovalResultVC: YHBaseViewController {
}()
//
var showGuildViewFlag : Bool = false
//是否来着首页的弹窗
var isFromHomeAlertViewFlag : Bool = false
lazy var previewFileTool:YHFilePreviewTool = {
......@@ -163,9 +163,9 @@ class YHOfficialApprovalResultVC: YHBaseViewController {
getApprovalLetter()
if !showGuildViewFlag {
getAlertStatus()
}
// if !isFromHomeAlertViewFlag {
// getAlertStatus()
// }
getOfficalGuildCheckStatus()
}
......@@ -218,7 +218,7 @@ private extension YHOfficialApprovalResultVC {
func getOfficalGuildCheckStatus() {
princleVM.getOfficialCheckStatus { success, error in
if success {
if self.showGuildViewFlag {
if self.isFromHomeAlertViewFlag {
self.clickRightItemBtn()
}
}
......
......@@ -15,8 +15,8 @@ class YHOffivialApprovalGuildLineCheckView: UIView {
lazy var blackMaskView: UIView = {
let view = UIView()
view.backgroundColor = UIColor(hex: 0x0F1214, alpha: 0.5)
let tap = UITapGestureRecognizer(target: self, action: #selector(dismiss))
view.addGestureRecognizer(tap)
// let tap = UITapGestureRecognizer(target: self, action: #selector(dismiss))
// view.addGestureRecognizer(tap)
return view
}()
......
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