Commit ffd91fa237db4bf1d41c02b13cc87266911ce06a
Merge branch 'master' of http://bj.gitlab.cnlive.com/ios-team/CNLiveMateCode
Showing
2 changed files
with
5 additions
and
1 deletions
metaCode/Classes/Config/CNLiveConfigManager.swift
| ... | ... | @@ -83,6 +83,10 @@ extension Notification.Name { |
| 83 | 83 | //搜索确认处理 |
| 84 | 84 | public static let kDSSelectGoodsNotification = Notification.Name("kDSSelectGoodsNotification") |
| 85 | 85 | } |
| 86 | + struct ShopAuthManage { | |
| 87 | + //商家认证信息提交审核之后通知,不包含任何信息 | |
| 88 | + public static let DSShopDarenAuthResultNotification = Notification.Name("kDSShopDarenAuthResultNotification") | |
| 89 | + } | |
| 86 | 90 | struct PlayerManage { |
| 87 | 91 | //销毁播放器通知 |
| 88 | 92 | public static let kPlayerDestroyNotification = Notification.Name("kPlayerDestroyNotification") | ... | ... |
metaCode/Classes/Main/MinePage/Controller/CNLiveMineAuthResultViewController.swift
| ... | ... | @@ -185,7 +185,7 @@ class CNLiveMineAuthResultViewController: CNLiveBaseViewController { |
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | if _show_type == .detail_shop { |
| 188 | - | |
| 188 | + NotificationCenter.default.post(name: Notification.Name.ShopAuthManage.DSShopDarenAuthResultNotification, object: nil) | |
| 189 | 189 | } else { |
| 190 | 190 | view.addSubview(iDCardView) |
| 191 | 191 | iDCardView.snp.makeConstraints { make in | ... | ... |