diff --git a/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_Equip.lua b/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_Equip.lua index b33598f0fe..e75ec2ed27 100644 --- a/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_Equip.lua +++ b/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_Equip.lua @@ -112,7 +112,7 @@ function this:OnSortingOrderChange(_sortingOrder) Util.AddParticleSortLayer(v, _sortingOrder - sortingOrder ) end end -function this.OnClickTabBtn(_curIndex) +function this.OnClickTabBtn(_curIndex, isNotTop,isNotAni) curIndex = _curIndex bagPosEquips = EquipManager.GetEquipCompoundDataByEquipPosition1(curIndex) local equipDatas = EquipManager.GetAllSEquipsByPosition(curIndex) @@ -123,7 +123,7 @@ function this.OnClickTabBtn(_curIndex) this.ScrollView:SetData(equipDatas, function (index, go) this.SingleItemDataShow(go, equipDatas[index],equipStarsConfig[equipDatas[index].Star]) - end) + end, isNotTop, isNotAni) this.ShowTitleData(equipStarsConfig[curSelectEquip.Star]) end @@ -306,7 +306,7 @@ function this.Compound() SoundManager.PlaySound(SoundConfig.UI_Duanzao) -- SoundManager.PlaySound(SoundConfig.UI_Baoqi) UIManager.OpenPanel(UIName.RewardItemPopup,msg.drop,1,function() - this.OnClickTabBtn(curIndex) + this.OnClickTabBtn(curIndex, true, true) end) end) end @@ -398,7 +398,7 @@ function this.AutoCompound(_position) NetManager.ComplexEquipRequest(curIndex,0,0,function(msg) SoundManager.PlaySound(SoundConfig.UI_Duanzao) SoundManager.PlaySound(SoundConfig.UI_Baoqi) - this.OnClickTabBtn(curIndex) + this.OnClickTabBtn(curIndex, true, true) UIManager.OpenPanel(UIName.RewardItemPopup,msg.drop,1,function() end) end)