Commit bb9b1d25c9b519fe3e28ee84f60435014ddfee70

Authored by liushiyu
1 parent 27efd6f5

商家认证结果返回

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
... ...