huangxiaoyue преди 1 година
родител
ревизия
3fde0ed964

+ 1 - 0
GameClient/Assets/Game/HotUpdate/Views/Store/StoreArenaView.cs

@@ -71,6 +71,7 @@ namespace GFGGame
         private void UpdateView()
         {
             _shopCfgs = ShopDataManager.Instance.SortShopGoodsCfgs(_shopCfgs);
+            ShopViewManager.Instance.ClearItemEff();
             _ui.m_storeExchangeList.m_list.numItems = _shopCfgs.Count;
         }
         private void ListItemRenderer(int index, GObject obj)

+ 1 - 0
GameClient/Assets/Game/HotUpdate/Views/Store/StoreExchangeView.cs

@@ -71,6 +71,7 @@ namespace GFGGame
         private void UpdateView()
         {
             _shopCfgs = ShopDataManager.Instance.SortShopGoodsCfgs(_shopCfgs);
+            ShopViewManager.Instance.ClearItemEff();
             _ui.m_storeExchangeList.m_list.numItems = _shopCfgs.Count;
         }
         private void ListItemRenderer(int index, GObject obj)

+ 1 - 0
GameClient/Assets/Game/HotUpdate/Views/Store/StoreGiftBagAddRebateView.cs

@@ -97,6 +97,7 @@ namespace GFGGame
         private void UpdateView()
         {
             _shopCfgs = ShopDataManager.Instance.SortShopGoodsCfgs(_shopCfgs);
+            ShopViewManager.Instance.ClearItemEff();
             _ui.m_rebateList.numItems = _shopCfgs.Count;
         }
 

+ 1 - 0
GameClient/Assets/Game/HotUpdate/Views/Store/StoreGiftBagView.cs

@@ -73,6 +73,7 @@ namespace GFGGame
         private void UpdateView()
         {
             _shopCfgs = ShopDataManager.Instance.SortShopGoodsCfgs(_shopCfgs);
+            ShopViewManager.Instance.ClearItemEff();
             _ui.m_storeGiftBagList.m_list.numItems = _shopCfgs.Count;
         }
         private void ListItemRenderer(int index, GObject obj)

+ 1 - 0
GameClient/Assets/Game/HotUpdate/Views/Store/StoreMonthView.cs

@@ -87,6 +87,7 @@ namespace GFGGame
         private void UpdateView()
         {
             menu2 = (int)this.viewData;
+            ShopViewManager.Instance.ClearItemEff();
             _shopCfgs = ShopCfgArray.Instance.GetCfgsBymenu1Andmenu2(ConstStoreTabId.STORE_MONTH_CARD, menu2);
             _shopCfgs = ShopDataManager.Instance.RemoveNotOpenCfg(_shopCfgs);
             _shopCfgs = ShopDataManager.Instance.SortShopGoodsCfgs(_shopCfgs);