|
@@ -141,7 +141,8 @@ namespace GFGGame
|
|
|
if (objs.Length > 2 && objs[2] != null)
|
|
|
{
|
|
|
_selectedItemId = (int)objs[2];//从物品来源面板跳转到商店,需要物品id方便打开界面时做选中处理
|
|
|
- _selectedItemCount = (int)objs[3];
|
|
|
+ long selectedItemCount = (long)objs[3];
|
|
|
+ _selectedItemCount = (int)selectedItemCount;
|
|
|
ShopCfg[] dataArray = ClothingShopCfgManager.Instance.GetShopCfgs(_storeId);
|
|
|
for (int i = 0; i < dataArray.Length; i++)
|
|
|
{
|